deleteOAuthApp

deleteOAuthApp

Function
deleteOAuthApp(requestOptionsIDeleteOAuthAppOption): Promise<IDeleteOAuthAppResponse>

Used to delete the OAuth2.0 app with given itemId.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { deleteOAuthApp, IDeleteOAuthAppResponse } from '@esri/arcgis-rest-developer-credentials';
import { ArcGISIdentityManager } from "@esri/arcgis-rest-request";

const authSession: ArcGISIdentityManager = await ArcGISIdentityManager.signIn({
  username: "xyz_usrName",
  password: "xyz_pw"
});

deleteOAuthApp({
  itemId: "xyz_itemId",
  authentication: authSession
}).then((deletedOAuthApp: IDeleteOAuthAppResponse) => {
  // => {itemId: "xyz_itemId", success: true}
}).catch(e => {
  // => an exception object
});
Parameters
ParameterTypeNotes
requestOptions
IDeleteOAuthAppOption

Options for deleteOAuthApp | deleteOAuthApp(), including itemId of which OAuth app to be deleted and an ArcGISIdentityManager authentication session.

Returns 
Promise<IDeleteOAuthAppResponse>

A Promise that will resolve to an IDeleteOAuthAppResponse object representing deletion status.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.