Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.accessibilitySupport": "on",
"editor.autoIndentOnPaste": true,
"editor.defaultFormatter": "GitHub.copilot",
"editor.experimentalGpuAcceleration": "on",
"editor.gotoLocation.alternativeReferenceCommand": "editor.action.referenceSearch.trigger",
"editor.inertialScroll": true,
"editor.linkedEditing": true,
"diffEditor.codeLens": true,
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
"typescript.tsserver.enableTracing": true,
"python.linting.pylintEnabled": true
}
2 changes: 1 addition & 1 deletion examples/get_posts.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def some_action(post):
# here: https://developers.facebook.com/tools/explorer/
access_token = ""
# Look at Bill Gates's profile for this example by using his Facebook id.
user = "BillGates"
user = "jeremy.b.matthews.3"

graph = facebook.GraphAPI(access_token)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

EAAOORZCk0ae8BPnDBFzvZCT2qxx3zZASmc4OLOdtrL0VJhrXGaYuJwWHZB2DoD3uqvZBwkKYizg2cXiZA0jWpFHiykSzX9XyLUzxQxJZCjt4oNE649ZCVaWuJoABrV7WkbwM3ZClXkTvWTSXxLwZBa3Yu7kqYyrbsvGGWxFdOG5QrXZBSJ0hckTPDUJ3A36xxUZD

profile = graph.get_object(user)
Expand Down