getSubscriptionPublishingCredentials results in error
See original GitHub issueHi–,
I’m using the following packages:
"azure-arm-website": "^0.11.2",
"ms-rest-azure": "^1.15.0"
When I try to get the publishing credentials via
let client = new WebSiteManagement(<credentials>, <subscriptionId>);
client.global.getSubscriptionPublishingCredentials((err, res) => {
// App logic
}
it results in the following error:
"The resource type could not be found in the namespace 'Microsoft.Web' for api version '2015-08-01'."
The method does a GET request. Is the REST API maybe expecting a call via POST? Thanks!
Issue Analytics
- State:
- Created 7 years ago
- Comments:14 (6 by maintainers)
Top Results From Across the Web
Microsoft.Azure.Management.WebSites.xml 1.0.1
GetSubscriptionPublishingCredentials(Microsoft. ... Else, the resulting list contains web apps from the start of the ... Might contain an error message.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is good info to start with. We can pass this info to guys on the server side and get them to look at this.
@ruslany @amarzavery thank you so much for your excellent answer! Really appreciate it! That fixed it.