7

我正在使用LinkedIn-jAPI 进行 LinkedIn 集成。 我可以发布状态更新。 我想在 Android 的WebView 中显示用户配置文件,因为我正在使用以下代码获取用户公共 URL。

person.getSiteStandardProfileRequest().getUrl();

返回这样的东西http://www.linkedin.com/profileviewProfile=&key=100652876&authToken=AWW7&authType=name&trk=api*a169149*s177398*

如果我要在 WebView 中打开这个 url,那么它的 Redirecting to LinkedIn Login 页面和填写 Credential 后我可以看到 user Profile

我想再次打开用户配置文件而不输入凭据

我也尝试通过附加

URL&accesstoken="tokenIdReturned by Application"; 

但我仍然无法直接打开用户配置文件。我错过了什么?

4

1 回答 1

5

我有同样的要求,我做了两件事。

首先 ,我使用我自己的 WebView 加载不同的 URL 以进行身份​​验证和显示配置文件。我WebView使用public static 默认浏览器将调用重定向到我自己的 Activity 中的 WebView

其次,我已经设置webview.getSettings().setAppCacheEnabled(true);好了,现在它在查看个人资料时不再要求登录。

singleInstace我已经在 Manifest.xml 文件中声明了我的活动。

更新:

我在我的活动中使用 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());
}
于 2012-06-25T12:25:42.933 回答