I have certain challenge to take and I’m hoping I will be able to get some input here, so here we go:
Certain company has a database driven website. Members can login and do certain activity. There is a mobile App which somehow logs in to the database and can show some data through that mobile App. This is basically the same data which is available through the website login (although presented in different way). The company is running SharePoint so it is all based on MSSQL and .Net
When I looked up the source on the login page I have discovered some reference to the API’s in the code.
At this point I would rather not to contact mobile App developer (for number of reasons) to ask how his mobile App could access the data. My question might be stupid or tivial, but perhaps this is something we all might want to learn one day.
Is this possible that SP Server has some API’s installed which allow to access the database through that API and present it in completely different App ?
Here is the fragment of the code:
var YoungLiving = YoungLiving || {};
YoungLiving.Urls = YoungLiving.Urls || {};
YoungLiving.Urls = {
requireJsBaseUrl: "/vo/150319163721",
cacheRevision: "150319163721",
virtualOfficeWebSite: "https://beta.youngliving.com/vo",
legacyVirtualOfficeWebSite: "https://www.youngliving.com/signup",
legacyVirtualOfficeWebSiteWithCart: "https://www.youngliving.org/rs_frn_login.asp",
accountsService: "https://beta.youngliving.com/api/accounts",
shoppingService: "https://beta.youngliving.com/api/shopping",
downlineService: "https://beta.youngliving.com/vo.dlv.api/",
voDlvService: "https://beta.youngliving.com/vo.dlv/"
};
Here is a link to the login page: view-source:https://beta.youngliving.com/vo/#/login
obviously I do not know the server IP, database name etc, but perhaps this can be discovered…
Arthur