Skip to content

Commit 86f2122

Browse files
committed
Removed my client id and access token
1 parent 5818983 commit 86f2122

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

defines.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
def getCreds() :
55

66
creds = dict() # dictionary to hold everything
7-
creds['access_token'] = 'EAAKeNEINqmwBAJts9o23ZCXAl66YBCLFQxTuHlTXsA6U5oVa3Fm7vch3AkoxURk8e427V9MbX0sHSwaiQ8CtZBojopZABbxZBTc4j0JNxYaI88NcgiZCxdU3jDLIKedmPK0DXITLZBJUhDY4d6ZCBDDrejaZBYAFZB65ybCILSHyYagZDZD' # access token for use with all api calls
8-
creds['client_id'] = '736897237101164' # client id from facebook app IG Graph API Test
9-
creds['client_secret'] = '0d08cbbb40c805926931849a95fc5d25' # client secret from facebook app
7+
creds['access_token'] = 'your-access-token' # access token for use with all api calls
8+
creds['client_id'] = 'your-client-id' # client id from facebook app IG Graph API Test
9+
creds['client_secret'] = 'your-client-secret' # client secret from facebook app
1010
creds['graph_domain'] = 'https://graph.facebook.com/' # base domain for api calls
1111
creds['graph_version'] = 'v7.0' # version of the api we are hitting
1212
creds['endpoint_base'] = creds['graph_domain'] + creds['graph_version'] + '/' # base endpoint with domain and version
1313
creds['debug'] = 'no' # debug mode for api call
14-
creds['page_id'] = '100760741699255' # users page id after running the "get_user_facebook_page.py"
15-
creds['instagram_account_id'] = '17841406228315535' # users instagram account id after running the "get_user_instagram_page.py"
14+
creds['page_id'] = 'your-page-id' # users page id after running the "get_user_facebook_page.py"
15+
creds['instagram_account_id'] = 'your-instagram-id' # users instagram account id after running the "get_user_instagram_page.py"
1616
creds['ig_username'] = 'imakashsahu' # ig username to get details
1717

1818
return creds

0 commit comments

Comments
 (0)