Raphael
Raphael

Reputation: 592

How to get data from Azure Easy Tables made for an android app in website?

I created a simple backend for my android app using Azure easy tables and I was wondering how (and if) I can perform CRUD operations from a simple, non-asp.net website I'm making. I'm hoping to be only using js for this but if that is not possible, then I'll be open for other solutions.

Upvotes: 0

Views: 117

Answers (1)

Aaron Chen
Aaron Chen

Reputation: 9950

There are two approaches you can use to perform CRUD with Javascript after you set up easy tables on Azure.

  1. Make AJAX requests to table endpoints. All HTTP interfaces that the SDK exposes to you can be found in the article.

  2. Use the JavaScript client library to work with tables. For more information, see How to Use the JavaScript client library for Azure Mobile Apps.

Upvotes: 1

Related Questions