GithubHelp home page GithubHelp logo

Comments (1)

jyauxi avatar jyauxi commented on June 8, 2024

I've solved the problem, and it is not what I had written in the previous issue. The problem is in passing a proper PEM key. Two things should be noted:

  1. Generating the key in the proper format - Using openssl generating a key for RSA-SHA1 is as follows:
openssl genrsa -out rsa-private-key.pem 1024

This generates a key rsa-private-key.pem with header:

-----BEGIN RSA PRIVATE KEY-----

This is the format that will NOT be accepted by computeRsaSignature(algorithm, value, key) function and must be converted to pkcs8 format with openssl and this command:

openssl pkcs8 -topk8 -inform pem -in rsa-private-key.pem -outform pem -nocrypt -out private-key.pem

The output private-key.pem should start with:

-----BEGIN PRIVATE KEY-----
  1. Passing the key in the format required - the approach I used is to ask the user for the private key from a ui.prompt without the -----BEGIN PRIVATE KEY-----, and then when storing the key in PropertiesService, the -----BEGIN PRIVATE KEY-----\n and \n-----END PRIVATE KEY-----\n is appended.
/**
 * Dialog box to enter private key.
 */
function enterPrivateKey() {
  var ui = SpreadsheetApp.getUi();
  var result = ui.prompt("Enter private key", ui.ButtonSet.OK_CANCEL);
  // Process the user's response.
  var button = result.getSelectedButton();
  if (button == ui.Button.OK) { // User clicked "OK".
    var scriptProperties = PropertiesService.getScriptProperties();
    scriptProperties.setProperty("PRIVATE_KEY", "-----BEGIN PRIVATE KEY-----\n" + result.getResponseText() + "\n-----END PRIVATE KEY-----\n");
    ui.alert("private key saved");
  } else if (button == ui.Button.CANCEL) { // User clicked "Cancel".
    ui.alert("Private key was not saved");
  } else if (button == ui.Button.CLOSE) { // User clicked X in the title bar.
    ui.alert("You closed the dialog.");
  }
}

from apps-script-oauth1.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.