我正在使用以下 API 调用来生成访问令牌 -
https://graph.facebook.com/oauth/access_token?client_id=XXXXXX&client_secret=XXXXXXX&grant_type=client_credentials
从上面得到访问令牌如下: - 162345123675615|GmRvEjertyuiNdlaBc9zuxPjhMA
所以,我使用上面的访问令牌和以下 APi 来延长它的到期时间:-
https://graph.facebook.com/oauth/access_token?grant_type=fb_exchange_token&client_id=xxxxxx&client_secret=xxxxxx&fb_exchange_token=162345123675615|GmRvEjertyuiNdlaBc9zuxPjhMA
从上述 API 调用获得响应:- {"error":{"message":"No user access token specified","type":"OAuthException","code":1}}
谁可以帮我这个事。是否可以扩展从以下 API 生成的上述访问令牌类型: - https://graph.facebook.com/oauth/access_token?client_id=XXXXXX&client_secret=XXXXXXX&grant_type=client_credentials
那么,是否可以扩展上述类型的访问令牌或扩展他们需要其他类型的访问令牌。