ReauthorizationRequired
ReauthorizationRequired indicates that user should be redirected to the userInteractionUrl, specifying the whitelisted redirect_uri
as a paramater in the query string.
Once the user has completed the required interaction, or has dismissed it, they'll be returned to the redirect_uri
,
after which, the results of the reauthorization will be available using the following query:
query Result($requestId: ID!) {
node(id: $requestId) {
... on ReauthorizationRequired {
status
userInteractionUrl
id
}
}
}
type ReauthorizationRequired implements Node {
status: ReauthorizationStatus!
userInteractionUrl: URL!
id: ID!
}
Fields
status
● ReauthorizationStatus!
non-null enum
userInteractionUrl
● URL!
non-null scalar
id
● ID!
non-null scalar
Interfaces
Node
interface
An abstract datatype that has a locally unique identifier, allowing a given node to be later queried by id using the
node(id: ID!)
query.