facebook会话在android中过期

Roc*_*kin 2 java android

我在我的android项目中使用facebook api

{"error":{"type":"OAuthException","message":"Error validating access token:
Session has expired at unix time 1307350800.
The current unix time is 1307352870."}}
Run Code Online (Sandbox Code Playgroud)

我的会话到期......过了一段时间......我希望它会议永远不会......到期

期待一块片段代码..那个会话永远不会结束

我用这个来授权

    facebook.authorize(SignIn.this,
                    new DialogListener() {
Run Code Online (Sandbox Code Playgroud)

Nat*_*ann 5

当用户登录以获取未过期的令牌时,您必须请求脱机权限.

getFacebookApi().authorize(this, new String[]{"offline_access"}, CONSTANT_ID, myDialogListener);
Run Code Online (Sandbox Code Playgroud)

希望这可以帮助!