ilhan
ilhan

Reputation: 8995

Authenticating as an Application

Where you type these things?:

curl -F type=client_cred \
     -F client_id=your_app_id \
     -F client_secret=your_app_secret \
     https://graph.facebook.com/oauth/access_token

In other words, how I'll do it in PHP? Or manually? source

Upvotes: 0

Views: 119

Answers (1)

nathan
nathan

Reputation: 5464

Use the PHP curl function or use the PHP+Javascript example on the page you link to...

Upvotes: 1

Related Questions