How to generate FB Page access token [closed] - php

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 6 years ago.
Improve this question
I have a Page with ID: 1620295414849355
I need to generate Page Access Token.
Need Page access token to post content on FB page from my website.

First you need to generate app token in the debug tool and then select your page from drop down present in the right side of access token.Then you will get the page access token in the same input box.

Related

How to check if user is authorized Angular + PHP [closed]

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
I configured authentication using Angular and PHP.
But if page is reloaded - user have to enter login and password again.
Because after reloading - angular's variable "IsLoggedIn" is set to false.
Is there a way how to pass session data from php side to angular without additional ajax request to server?
Because firstly php framework is loaded and then it shows a view with html and angular scripts.
you can do it by jwt or any other token base authentication.

How can i create a page that tailors personal info to the user [closed]

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
After hours of trial and error, using WAMP i made a login system that mails me locally ( password recovery etc). I want to make pages that only the user has information tailored to the user, think of it as a profile page Facebook or Twitter, the news updates.
You can use sessions. In php you can type session_start(), then you can store some information about the user. So if the user don't have a session he can't access the page. Search about session_start(). You will find many examples about it.

How can i control my admin panel with php code? [closed]

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 6 years ago.
Improve this question
I am working in a website where i want to add, delete, update my database in according to my admin panel with php code. What is the basic start of beginning for control my panel?
You have to add authorisation by login and password. After success your script should save in session information about correct login (like e.g logged = true). Then you must to check if users have token in session - if so then show them admin panel, if not then redirect on login page

Facebook access token from php to javascript [closed]

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

Restricted API Access By only for Android app [closed]

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.

Categories