You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the following exception: Twitter auth configuration missing.
Code 1.
i have this in my index.js:
oauth: {
twitter: {
consumer_key: 'MyConsumerKey',
consumer_secret: 'MySecrectKey'
}
}
I'm using this to link accounts:
if (!ParseTwitterUtils.isLinked(user)) {
ParseTwitterUtils.link(user,
getActivity(), new SaveCallback() {
@Override
public void done(ParseException ex) {
if (ex == null){
if (ParseTwitterUtils.isLinked(ParseUser.getCurrentUser())) {
Log.d("MyApp", "Woohoo, user logged in with Twitter!");
}
}else {
Log.d("MyApp", "message: " + ex.getMessage());
Log.d("MyApp", "getCode: " + ex.getCode());
}
}
});
}
where user is: ParseUser user = ParseUser.getCurrentUser();
I'm using android 5.1 lollipop
I'm using these libs:
I was randomly reading the parse server documentation and found this, I decided to test and it works perfectly now!
auth: {
twitter: {
consumer_key: "MyConsumerKey", // REQUIRED
consumer_secret: "MyConsumerSecret" // REQUIRED
},
facebook: {
appIds: "MyAppIdFb"
}
}
I'm getting the following exception: Twitter auth configuration missing.
Code 1.
i have this in my index.js:
oauth: {
twitter: {
consumer_key: 'MyConsumerKey',
consumer_secret: 'MySecrectKey'
}
}
I'm using this to link accounts:
where user is: ParseUser user = ParseUser.getCurrentUser();
I'm using android 5.1 lollipop
I'm using these libs:
I've been trying all day to find a solution to this, but so far nothing, so I've come to the experts for help, thank you.
Forgive my English, I'm using google translator :(
The text was updated successfully, but these errors were encountered: