Skip to content

Commit d2b516a

Browse files
committed
Edit whitespace to conform to Markdown guidelines
1 parent c4b8128 commit d2b516a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ Before building, make sure the following environment variables:
1313

1414
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.
1515

16-
##Facebook Access Tokens Expire
17-
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.
16+
## Facebook Access Tokens Expire
1817

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.
1919

2020
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`
2121

22-
##Check group activity
22+
## Check group activity
23+
24+
#### Easy Range - (Days Back, Days Forward)
2325

24-
####Easy Range - (Days Back,Days Forward)
2526
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.
2627

2728
`curl -X POST \
@@ -31,7 +32,8 @@ Example: If I want to look back to last month, daysBack = 60 and daysForward = 3
3132
-d '{"daysBack": _daysBack_, "daysForward": _daysForwardFromThere_}' \
3233
https://api.parse.com/1/functions/countItems`
3334

34-
####Exact Range - (Start Date,End Date)
35+
#### Exact Range - (Start Date, End Date)
36+
3537
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).
3638

3739
`curl -X POST \

0 commit comments

Comments
 (0)