Good evening,
I have a very strange problem in Monaca Backend.
When I inserted a data information in Collection Backend with application mobile, I can refer to the information with application mobile.
But when I inserted some information with the Collection Backend website, I can not see the same application with application mobile.
Related
I have a website made on opencart and now I want an ios app for my website which dynamically loads data from the website. their database should be integrated so that when a change is made to any one of them it should make changes on both website and application.
Does someone provide me that API??
I dont think there is an API like you wish. You have to develop an API gateway as a middleware between your mobile apps and OpenCart backend. And I think it’s a simple job since all your data already exists in OpenCart database.
I am working on the project where my backend will be in Azure and it will be native iOS and Android application :
https://learn.microsoft.com/en-us/azure/app-service-mobile/app-service-mobile-ios-how-to-use-client-library
My question is :-
Does Azure provide the service where we don't have to create any webservices to transfer the data between mobile and database on server?
We can handle everything from mobile side ?
NO - and you don't want that. It opens up a massive security hole.
You have to create the App Service and then use Easy Tables. Once the table is created, you can use the model in the client code and just push changes to the service. It will automatically and dynamically change the model on the backend.
I am currently making my first iOS app in Swift. My web developer has sent me APIs for making calls for each method in the MySQL database table.
How do I use these web APIs in my mobile app to access the database?
Do I need to create a REST API or can I call these APIs directly?
Thanks.
Well obviously the Database and API has to be running on a web server some where. Then from your iOS application you would just be calling a web url to fetch data. For example:
mydomain.com/api/v1/getUsers
Which should then ideally return results in Json or XML or some format. And you use your programming skills to display that data in application.
I am developing IOS app where users will be login into my WordPress site and complete the form and send the data to WordPress Database. Here I am using JSON API for Wordpress to validate users. Is there any plugin which allow me to enter data to WP database directly?
You can use the JSON API to add a post to Wordpress. You do have to implement Oauth2 if you want to do so. You could use one of these libraries for that: https://cocoapods.org/?q=oauth
See the API documentation for information about posting something: https://developer.wordpress.com/docs/api/
last year I made really simple blog system. it allows user to authorize, posting, commenting. Now I want to create windows mobile/wp7 application that can adding new posts to my blog. But I have no idea how should it work. Should my web app share some api for this or my phone app should just sending specified request to server? I'm interessting how do facebook phone apps work? How they pass data to fb etc.
It would be great if anyone knows book, tutorial or something about connecting web app and phone app. I rather need app architecture tutorials than codes.
PS I know I can just open phone browser and login on website but I want to do it for fun :)
One way of approaching this is create a few actions in your controllers to return data in a format that is friendly to a WP7 app, for example, return JSON rather than HTML.
In your WP7 app you will make HTTP requests to these actions and receive the data in JSON format. From there it's up to you to handle that information on the phone.
What is the back-end of the blog system? Almost any DB data can now be exposed out as an OData Service that can be consumed on a Windows Phone app & also provide CRUD operations. Is OData a possibility?
Check out these two posts for details:
http://www.silverlightshow.net/items/Producing-and-Consuming-OData-in-a-Silverlight-and-Windows-Phone-7-application.aspx
http://www.silverlightshow.net/items/Connecting-Azure-Windows-Phone-through-OData.aspx
The second one does talk about how a central data store can be shared between web & mobile apps.
Hope this helps!