Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If no Redirect URI is specified, we will set this to "http://localhost".

You may submit this via email to support@active911.com with the subject line of "Open API Developer Registration"

...

Parameter

Required

Description

client_id

yes

The client_id given to your application when you registered it with us

response_type

yes

Currently we only support the Authorization Code workflow, so this must be set to "code"

redirect_uri

yes

The url you want the user to be redirected to after they authorize your request

scope

yes

The permissions you are requesting access for. This is a space delimited list of one or more of these scopes. The scopes you can request are limited to the ones the application is registered for.

state

no

You may set this to a particular value, and that value will be resent upon redirection after authorization

...

You may use a refresh token to generate a new access token at https://access.active911.com/interface/open_api/token.php by using a POST request

Parameter

Required

Description

client_id

yes

The client_id given to your application when you registered it with us

client_secret

yes

The client_secret given to your application when you registered it with us

grant_type

yes

For refreshing your token, this must be set to "refresh_token"

refresh_token

yes

The Refresh token given when you submitted your authorization code.

...