authorization_form operation

After the scope is selected from the authorization form, the resource owner uses the authorization form operation to handle the selected scope. This operation applies to authorization code grant type and implicit grant type.

The following excerpt shows the <input> node for an authorization form operation.

<input>
  <operation>authorization_form</operation>
  <oauth-id>…</oauth-id>
  <OAuthSupportedClient>…</OAuthSupportedClient>
</input>

After processing, the output contains a <result><scope></scope></result> node that contains the custom data. Processing can return an empty node.

<result>
  <scope>scope selected by resource owner space deliminated</scope>
</result>