I have the following code:
var client = new WebSiteManagementClient(creds);
var data = client.WebSites.Get("eastuswebspace", "some-site", new WebSiteGetParameters());
I need to generate credentials, I am an administrator with full access. Only one application accesses my data and you need to create TokenCloudCredentials.
I tried to register the application, but received a “forbidden” error after successfully creating the token. The easiest way to do this (e.g. Github, create a token and do it?).
Thank.
source
share