我正在使用LinkedIn-j API进行LinkedIn集成.
我可以发布状态更新.
我想在 Android中的WebView中显示用户配置文件,因为我使用下面的代码获取用户公共URL.
我可以发布状态更新.
我想在 Android中的WebView中显示用户配置文件,因为我使用下面的代码获取用户公共URL.
person.getSiteStandardProfileRequest().getUrl();
返回类似这样的内容http://www.linkedin.com/profileviewProfile=\u0026amp;key=100652876\u0026amp;authToken=AWW7\u0026amp;authType=name\u0026amp;trk=api*a169149*s177398*
如果我要在WebView中打开此URL,然后将其重定向到LinkedIn登录页面,在填写凭据后,我可以看到用户个人资料.
我也尝试通过追加
URL&accesstoken="tokenIdReturned by Application";
但我仍然无法直接打开用户个人资料.
我错过了什么?
解决方法
我有同样的要求,我做了两件事.
首先,我使用自己的WebView加载不同的URL进行身份验证和显示profiles.I已将我的WebView设置为公共静态,而不是使用默认浏览器,我已将调用重定向到我自己的Activity中的WebView.
其次我设置了webview.getSettings().setAppCacheEnabled(true);所以现在它在查看配置文件时不再要求登录.
我在Manifest.xml文件中将我的Activity声明为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()); }