Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Here is my API call link :
http://192.168.0.107/AYURV/api/V1/user/signup.php
This link only access by only specific android app how can do that?
Advance Thanks.
Have the request sender send a UserAgent and device and app version
This way you can filter incoming requests based on this information on the server side, and reject the ones that don't match.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 days ago.
Improve this question
IS there any possible solution to integration of gmail api in laravel framework within an app that every user of app can insert there own client id and client secret.
any solution regarding to this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to make an app for a wordpress blog but need a very specific feature to be there i.e whenever a new post is made a pushnotification should be made in the user's mobile. how to do that??
Use This Plugin in Your Wordpress and use GCM/FCM API Key for sending the push notification in Android App
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have already implemented logging in with php, now I want to implement payments, however all the tutorials are in javascript, is this possible to send user access token to javascript somehow?
It seems that the payment dialog can only be triggered via the JS SDK, as you already mentioned:
https://developers.facebook.com/docs/howtos/payments/paymentflow/#paydialog
Once you got the payment_id, you can use the Graph API to get the details:
https://developers.facebook.com/docs/graph-api/reference/v2.0/payment
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I would create a web application that sends push-notifications to my iPhone when a person filled in a form. How can I send that notification through PHP to my iPhone?
Have a read through Apple Push Notification Services in iOS 6 Tutorial which guides you through everything you will need from creating the certificates/keys to giving you some PHP to use.
You can use the Parse API available on http://www.parse.com to send push notifications easily :)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Can some one tell me a best way to create a real time chat apps like facebook. which work on any browser and also mobile device like facebook ?
Try reading into the XMPP protocol. You can implement this protocol on different platforms.