我想用这个库检索签入信息,但响应中有错误。
这是我的代码:
FoursquareApi foursquareApi = new FoursquareApi("Client ID", "Client Secret", "Callback URL");
Result<Checkin> result;
try {
result = foursquareApi.checkin("id_checkin", "signature");
if (result.getMeta().getCode() == 200) {
Checkin checkin = result.getResult();
}
但我有这个错误:
Error occured:
code: 401
type: invalid_auth
detail: OAuth token invalid or revoked.
如果我在 explorerfoursquare 实用程序中使用相同的代码。为什么我有这个问题?
在此先感谢您的帮助。