Created
June 10, 2012 13:05
-
-
Save kesor/2905476 to your computer and use it in GitHub Desktop.
Login URL for Facebook test user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
# | |
# create a test user at developer.facebook.com and set these | |
# | |
FULL_NAME="Bob+Amchicieafci+Martinazziman" | |
APP_ID="123456123456123" | |
APP_SECRET="123abc123abc123abc123abc123abc12" | |
APP_ACCESS_TOKEN=$( curl -s "https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id=${APP_ID}&client_secret=${APP_SECRET}" ) | |
curl -s "https://graph.facebook.com/${APP_ID}/accounts/test-users?installed=true&name=${FULL_NAME}&locale=en_US&permissions=read_stream&method=post&${APP_ACCESS_TOKEN}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment