-2

我正在使用以下API將訪問令牌的生命(有效期)延長至60天。Facebook使用相同訪問令牌(ID /字符串)延長訪問令牌的生命/有效期

https://graph.facebook.com/oauth/access_token? 
    grant_type=fb_exchange_token&   
    client_id=APP_ID& 
    client_secret=APP_SECRET& 
    fb_exchange_token=SHORT_LIVED_ACCESS_TOKEN 

使用上面如果我有60天有效期e.g一個訪問令牌: - AAACUUypbpertyyZB3dbIevYgzryzbl4ZCUKprtyuilSac7HbGNVR8cHkqDZCS8dfghjklfEmi3HkZA8qgZCVTasdfyz07ZATRsRn5XNH8PAAZDZD

如果50天之後,如果我再打電話上方延伸的API相同。在這裏,我的問題是 我可以將我上面提到的相同訪問令牌的有效期延長至未來60天,或者由此API生成新的訪問令牌嗎?

最終,我想使用相同的訪問令牌。只是我想在每50天后將其有效期延長60天。請幫助我解決這個問題嗎?

回答

0

不,這是不可能的。 From Facebook Docs

The returned access_token will have a fresh long-lived expiration time, however, the access_token itself may or may not be the same as the previously granted long-lived access_token.