ArcGIS PortalDirectory Login Error - Invalid client_ID

2851
3
Jump to solution
10-19-2016 08:40 AM
MathanManohar
New Contributor III

Hi,

I am setting up development environment for teh ArcGIS WebApp Builder, Where I can develop the themes/widgets and upload to local ArcGISserver/Online ArcGIS account. 

Steps:

1.Download/Installed Nodejs

2.Download WebAppBuilder and run the StartUp.bat file

3.It executed the nodejs code and open the browser and requests for the 

Web AppBuilder for ArcGIS

Specify the URL to your ArcGIS Online organization or Portal for ArcGIS

4. I specify ESRI ArcGIS Online account.

Error:

Tags (1)
0 Kudos
1 Solution

Accepted Solutions
BhaskarSingh1
New Contributor

You can solve this by 2 ways.

1. Deleting "signininfo.json" file from "..\WebAppBuilderForArcGIS\server" folder.

2.  Updating this file and providing right  "appId" for you application.

You can get the appID from your portal. Safest way is to get client id and provide it in url.

Ex of : "signininfo.json"

[
{
"portalUrl": "https://XXX.domin.com/portal",
"supportsOAuth": true,
"isWebTier": true
},
{
"portalUrl": "https://XXX.domin.com/portal", // Update it with your portal url
"supportsOAuth": true,
"isWebTier": false,
"appId": "ABZlRO2HW2nJ0qYH" // Provide your registered appid.
}
]

View solution in original post

3 Replies
JosephYawn
New Contributor

Was this ever resolved?  I am running into the same issue.

0 Kudos
BhaskarSingh1
New Contributor

You can solve this by 2 ways.

1. Deleting "signininfo.json" file from "..\WebAppBuilderForArcGIS\server" folder.

2.  Updating this file and providing right  "appId" for you application.

You can get the appID from your portal. Safest way is to get client id and provide it in url.

Ex of : "signininfo.json"

[
{
"portalUrl": "https://XXX.domin.com/portal",
"supportsOAuth": true,
"isWebTier": true
},
{
"portalUrl": "https://XXX.domin.com/portal", // Update it with your portal url
"supportsOAuth": true,
"isWebTier": false,
"appId": "ABZlRO2HW2nJ0qYH" // Provide your registered appid.
}
]

AdrianWelsh
MVP Honored Contributor

Step 1: 

1. Deleting "signininfo.json" file from "..\WebAppBuilderForArcGIS\server" folder.

Helped me get my WAB DE working properly! Thanks!

0 Kudos