I am using Appery.io platform to build an app and ASP.NET to build a web page where the user can access his/her information.
I would like to use Appery.io backend services (file storage in this case) through the web page. So the user could upload his/her own images using the web site too, not only the app itself.
The problem is, all their sample code uses cURL and I don't know how to use cURL in an ASP.NET page.
I get this sample code from Appery.io platform:
curl -X GET \
-H "X-Appery-Database-Id: 51840604e4b0446b3349ce64" \
-G --data-urlencode 'username=<user_name>' \
--data-urlencode 'password=<user_password>' \
https://api.appery.io/rest/1/db/login
If there is no way of using direct cURL in ASP.NET, what options do I have?
PS: I don't have much experience with web developing