You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`GROUPID` - [facebook group ID](http://stackoverflow.com/questions/8957340/how-do-i-find-my-facebook-group-id)
13
15
14
-
After deploying, make sure to set up the `grabFacebookPosts`[background job](http://blog.parse.com/announcements/introducing-background-jobs/) to grab all the posts from your facebook group as frequently as you like.
16
+
After deploying, make sure to set up the `grabFacebookPosts`
to grab all the posts from your facebook group as frequently as you like.
15
19
16
20
## Facebook Access Tokens Expire
17
21
18
-
Use the [graph API explorer](https://developers.facebook.com/tools/explorer/) to get a temporary access token for testing. This token will expire in one hour.
22
+
Use the [graph API explorer](https://developers.facebook.com/tools/explorer/) to
23
+
get a temporary access token for testing. This token will expire in one hour.
19
24
20
-
Once you're ready to make a more permanent access token, [make a facebook app](https://developers.facebook.com/docs/apps/register), set the permissions you need, and click debug on the [app's access token](https://developers.facebook.com/tools/accesstoken/) so you can get to the page that allows you to `Extend Access Token`
25
+
Once you're ready to make a more permanent access token,
26
+
[make a facebook app](https://developers.facebook.com/docs/apps/register), set
27
+
the permissions you need, and click debug on the
28
+
[app's access token](https://developers.facebook.com/tools/accesstoken/) so you
29
+
can get to the page that allows you to `Extend Access Token`
21
30
22
31
## Check group activity
23
32
24
33
#### Easy Range - (Days Back, Days Forward)
25
34
26
-
Example: If I want to look back to last month, daysBack = 60 and daysForward = 30. If I want to look at this week, daysBack = 7 and daysForward = 7.
35
+
Example: If I want to look back to last month, daysBack = 60 and daysForward
36
+
= 30. If I want to look at this week, daysBack = 7 and daysForward = 7.
27
37
28
38
`curl -X POST \
29
39
-H "X-Parse-Application-Id: _PARSEAPPID_" \
@@ -34,7 +44,8 @@ Example: If I want to look back to last month, daysBack = 60 and daysForward = 3
34
44
35
45
#### Exact Range - (Start Date, End Date)
36
46
37
-
Specify the specific range to get a count. startDate and endDate are both [Javascript Date Objects](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date).
47
+
Specify the specific range to get a count. startDate and endDate are both
48
+
[Javascript Date Objects](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date).
38
49
39
50
`curl -X POST \
40
51
-H "X-Parse-Application-Id: _PARSEAPPID_" \
@@ -43,4 +54,5 @@ Specify the specific range to get a count. startDate and endDate are both [Javas
0 commit comments