BBoy
BBoy

Reputation: 1113

Connecting with the Azure SFTP ApiApp Connector

I have been playing around with the Azure SFTP connector for API Apps and Logic Apps (under the new preview site (portal.azure.com)) but have not had much luck getting it to work.

The Connector requires the following package settings to be set: ServerAddress, ServerPort, SSH Server HostKey, Root Folder, Accept Any SSH Server HostKey (bool), and Encrypt Cipher. It does not ask for a user name, and after activating the API app and attempting to use it I get the expected response of HTTP 400 with:

[
  "User Name Value cannot be null, empty, or cannot contain only white-space characters."
]

The Swagger api definition does not define any way to pass in the username and I cannot see anyway to define it in the connector settings, does anyone know how to set the username?

Upvotes: 0

Views: 1141

Answers (1)

You can configure the user and pass at the security component in your App API panel, select it an then you can set the user and password.

enter image description here

enter image description here

Check this url for more info: http://azure.microsoft.com/en-gb/documentation/articles/app-service-logic-connector-sftp/

Upvotes: 1

Related Questions