Coder Social home page Coder Social logo

Comments (3)

stephaniewilkinson avatar stephaniewilkinson commented on July 19, 2024

Hi! I'm following you over here from goodreads. When you give goodreads the callback URI, it appends ?oauth_token=token&authorize=1 to the end of the URI.

Can you get the other params out of your callback?

If not, then you could save the params from your google script as a variable and append it. You could redirect from the callback url to another URL with the params appended.

Here's how I did it in my app, FWIW (although I wasn't working with two sets of params): https://github.com/stephaniewilkinson/bookmooch/blob/master/app.rb#L36

from apps-script-oauth1.

erickoledadevrel avatar erickoledadevrel commented on July 19, 2024

Unfortunately it seems like the Goodreads API isn't following the OAuth 1.0 specification. As per their documentation:

The oauth_callback param value must not contain any query string params.

However, the official OAuth 1.0 specification says:

The callback URL MAY include Consumer provided query parameters. The Service Provider MUST retain them unmodified and append the oauth_token parameter to the existing query.

Apps Script requires a state parameter in the /usercallback URL in order to run. The library is passing this parameter, but Goodreads is blindly appending it's parameters instead of adding them on with ampersands as required by spec.

from apps-script-oauth1.

erickoledadevrel avatar erickoledadevrel commented on July 19, 2024

I've been able to work around this bug in their implementation by using the web app URL instead of the normal callback URL, since the web app URL doesn't require any state parameters. I've published a sample that shows how to do this.

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.