How to get FTP URL for my Azure website through management API?

I am trying to get the Azure Web Site FTP upload address from the REST management API. If you look at the source code of the Azure SDK Tools , I donโ€™t see anything that could help me, except for the property of the website, which is sent via the GetSite action to IWebsitesServiceManagement . Has anyone encountered this problem and figured out how to do this?

Edit: explanations and links.

+1
source share
3 answers

It is already there http://msdn.microsoft.com/en-us/library/windowsazure/dn166996.aspx . Still not available from Powershell, but at least the API is in place.

+1
source

Inside the portal, you cna upload a settings file for publishing with this information. There is also a link to the ftp address on the Dashboard page for your site.

+1
source

There is no official documentation (not even โ€œpreliminaryโ€ documentation) on this issue. When you develop management API tools, you should refer to the online documentation for this here . Given that this service (websites) is in preview mode, the API may change at any time, so I will not invest time in something that is not even documented. It's a waste of time.

0
source

Source: https://habr.com/ru/post/1205969/


All Articles