We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8556731 commit c83a787Copy full SHA for c83a787
src/authDataManager/twitter.js
@@ -12,7 +12,7 @@ function validateAuthData(authData, options) {
12
client.auth_token_secret = authData.auth_token_secret;
13
14
return client.get("/1.1/account/verify_credentials.json").then((data) => {
15
- if (data && data.id == authData.id) {
+ if (data && data.id_str == ''+authData.id) {
16
return;
17
}
18
throw new Parse.Error(
0 commit comments