Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
No, but this is a planned feature. You can detect when a person has revoked access by examining 401 errors when making an API request. A revoked access will look like:
{
"errors": [{
"errorType": "invalid_token",
"message": "Access token invalid: [access_token]"
}],
"success": false
}
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
No, but this is a planned feature. You can detect when a person has revoked access by examining 401 errors when making an API request. A revoked access will look like:
{
"errors": [{
"errorType": "invalid_token",
"message": "Access token invalid: [access_token]"
}],
"success": false
}