我正在使用LinkedIn-j
API进行LinkedIn集成。
我可以发布状态更新。
我希望在Android中的WebView 中显示用户配置文件,因为我使用以下代码获取用户公共URL。
person.getSiteStandardProfileRequest().getUrl();
返回类似http://www.linkedin.com/profileviewProfile=&key=100652876&authToken=AWW7&authType=name&trk=api*a169149*s177398*
如果我打算在WebView中打开此网址,然后重定向到LinkedIn登录页面,在填写凭据后,我可以看到用户个人资料。
我想打开用户个人资料而不输入凭据,再次
我也试过追加
URL&accesstoken="tokenIdReturned by Application";
但我仍然无法直接打开用户个人资料。 我缺少什么?
答案 0 :(得分:5)
我有同样的要求,我做了两件事。
首先我使用自己的WebView加载不同的网址进行身份验证并显示个人资料。我已将WebView
设为public static
而是使用默认值浏览器我已经在我的Activity 中将调用重定向到我自己的WebView。
第二次我已设置webview.getSettings().setAppCacheEnabled(true);
,因此现在查看个人资料时不会再次要求登录。
我已在Manifest.xml文件中将我的活动声明为singleInstace
。
更新:
我在My Activity中使用WebView的方式。
public static WebView WV = null;
String uri;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById(R.id.tv);
if (WV == null) {
WV = (WebView) findViewById(R.id.webView1);
WV.getSettings().setJavaScriptEnabled(true);
WV.getSettings().setAppCacheEnabled(true); // the important change
WV.getSettings().setSupportZoom(true);
WV.getSettings().setBuiltInZoomControls(true);
}
final SharedPreferences pref = getSharedPreferences(OAUTH_PREF,
MODE_PRIVATE);
final String token = pref.getString(PREF_TOKEN, null);
final String tokenSecret = pref.getString(PREF_TOKENSECRET, null);
if (token == null || tokenSecret == null) {
startAutheniticate();
} else {
showCurrentUser(new LinkedInAccessToken(token, tokenSecret));
}
}
void startAutheniticate() {
final LinkedInRequestToken liToken = oAuthService
.getOAuthRequestToken(OAUTH_CALLBACK_URL);
uri = liToken.getAuthorizationUrl();
getSharedPreferences(OAUTH_PREF, MODE_PRIVATE).edit()
.putString(PREF_REQTOKENSECRET, liToken.getTokenSecret())
.commit();
WV.loadUrl(uri);
}
void showCurrentUser(final LinkedInAccessToken accessToken) {
// code to get Profile object using Linkedin-J API
//which is already available on the API site as Example
WV.loadUrl(profile.getSiteStandardProfileRequest().getUrl());
}