我使用Scribe连接到LinkedIn。但是当我尝试连接时,我得到了这个错误:
org.scribe.exceptions.OAuthException: Response body is incorrect. Can't extract token and secret from this: 'oauth_problem=Scope%20NOT_AUTHORIZED%20%3A%20r_fullprofile'
我使用此代码获取RequestToken
authService = new ServiceBuilder().provider(LinkedInApi.class).apiKey(LINKEDIN_APP_ID).apiSecret(LINKEDIN_APP_SECRET).callback
(LINKEDIN_CALLBACK).build();
new RequestTokenTask().execute();
//some code
class RequestTokenTask extends AsyncTask<Void, Void, Void> {
@Override
protected Void doInBackground(Void... params) {
try {
requestToken = authService.getRequestToken(); //error here
authURL = authService.getAuthorizationUrl(requestToken);
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
@Override
protected void onPreExecute() {
progressBar.setVisibility(View.VISIBLE);
}
@Override
protected void onPostExecute(Void result) {
progressBar.setVisibility(View.GONE);
webView.loadUrl(authService.getAuthorizationUrl(requestToken));
}
}
我如何解决这个问题?
更新: 我无法在设置&#34; r_fullprofile&#34;允许。我做错了什么?
答案 0 :(得分:1)
许可“r_fullprofile”已弃用。
https://developer.linkedin.com/support/developer-program-transition
答案 1 :(得分:-1)
我会在Linkedin Developer页面上仔细检查您的LinkedIn应用程序,以确保您已检查_fullprofile权限。正如身体一样,它的读出会成为你的问题。
编辑:另外请务必检查这一点,因为它可以帮助您解决问题 https://developer.linkedin.com/blog/posts/2015/developer-program-changes