Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 hour ago.
Improve this question
I have app flow like i inserted below.
How can i use JWT to secure the API data transfer, while every app have it own user data. So if the app A send it credential, it cannot be authorized by the API server.
Does JWT is best approach to secure this API scheme ?
How to make API server and multiple API audiences using JWT and laravel.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Is possible to use Google API to fetch data for a Google Analytics 4 property?
If yes, is there a way to authorize users and access data from their accounts and properties (like the Embed API js working)?
I will create that APP using PHP and the PHP package https://github.com/googleapis/google-api-php-client
Currently there aren't API available for GA4 Property. You have to use BigQuery to get data.
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 7 years ago.
Improve this question
I want to receive a code which is been send from the mobile application during confirmation process.And I should check through the database if the user is authorized.What should I do to receive and analyze the data?
I suggest you start by learning about RESTful API Design. RESTful principles provide strategies to handle CRUD actions using HTTP methods. REST for example would dictate the usage of PUT/PATCH to UPDATE a record in the database for whatever it may be (user/item/etc).
You could have a URI which handles the verification by checking the details the mobile application has sent to the server against the appropriate record in the database and then sending back an appropriate response.
Here's a good example of where you can get started; http://www.restapitutorial.com/lessons/restfulresourcenaming.html
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 9 years ago.
Improve this question
i want to create a web app with REST API service. i want it to be like Facebook API.i know Facebook uses OAuth.
so how can i create a PHP REST API using OAuth?
Thanks
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.