Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Different response objects for iOS and Android #60

Open
SekibOmazic opened this issue Jan 23, 2017 · 2 comments
Open

Different response objects for iOS and Android #60

SekibOmazic opened this issue Jan 23, 2017 · 2 comments

Comments

@SekibOmazic
Copy link

Hi,

i've made a simple App that reads user information from twitter once use logs in.
So following call:

manager.authorize('twitter', {scopes: 'email'})
       .then(resp => { console.log('OAuth ->', resp) })
       .catch(err => console.log(err))

gets following responses:

Android:

{
  authorized: true,
  provider:"twitter",
  response: {
    credentials: {
      accessToken: "243289845-8ZpTDfcGALlXujZhavI ...",
      consumerKey: "PI21XdrLJoymr ...",
      type: "Bearer"
    },
    uuid: "243xxxxxx"
  },
  status: "OK"
}

iOS:

{
  provider:"twitter",
  response: {
    authorized: true,
    credentials: {
      access_token: "243289845-8ZpTDfcGALl ...",
      access_token_secret: "VEpo0LrLqkPnl7Y ...",
      type: "Bearer"
    },
    identifier: "7AC33593-9AB2-4CDA-B769-XXXXXXXX"
    uuid: "7AC33593-9AB2-4CDA-B769-XXXXXXXX"
  },
  status: "OK"
}

Notice the different UUIDs, as well as different object structure.

Under Android a call to https://api.twitter.com/1.1/users/show.json?user_id=${uuid} will get user data. But under iOS twitter sends an error object ("user not found"), because UUID is wrong.

Could you please explain this?

Regards.

@SekibOmazic SekibOmazic changed the title Different response for iOS and Android Different response objects for iOS and Android Jan 23, 2017
@roshangm1
Copy link

I am uuid null on Android.

@martin-badin
Copy link

martin-badin commented Jan 4, 2018

Hi,

I have different response for twitter and facebook on iOS. Access token could be the same.

type OAuthResponse = {
  response: {
    authorized: boolean,
    credentials: {
      accessToken?: string, // facebook
      access_token?: string, // twitter
      authorizationHeader?: string, // facebook
      access_token_secret?: string, // twitter
      clientID?: string, // facebook
      clientSecret?: string, // facebook
      scopes?: Array<string>, // facebook
      type?: number, // facebook
    },
    identifier: string,
    uuid: string,
  },
  status: Status,
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants