Sample code for 30+ languages & platforms
Visual FoxPro

Iterate Pages in Feed

See more Facebook Examples

Demonstrates how to read the next page in the user's Facebook feed, and iterates through all of the pages in the Facebook feed.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loOauth2
LOCAL loRest
LOCAL lcResponseJson
LOCAL loJson
LOCAL loNextUrl
LOCAL lcNextUrlStr

lnSuccess = 0

* This example requires the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

* This example assumes a previously obtained an access token
loOauth2 = CreateObject('Chilkat.OAuth2')
loOauth2.AccessToken = "FACEBOOK-ACCESS-TOKEN"

loRest = CreateObject('Chilkat.Rest')

* Connect to Facebook and send the following GET request:
lnSuccess = loRest.Connect("graph.facebook.com",443,1,1)
IF (lnSuccess <> 1) THEN
    ? loRest.LastErrorText
    RELEASE loOauth2
    RELEASE loRest
    CANCEL
ENDIF

* Provide the authentication credentials (i.e. the access key)
loRest.SetAuthOAuth2(loOauth2)

* Gets the 1st page in the user's feed.
lcResponseJson = loRest.FullRequestNoBody("GET","/v2.7/me/feed")
IF (loRest.LastMethodSuccess <> 1) THEN
    ? loRest.LastErrorText
    RELEASE loOauth2
    RELEASE loRest
    CANCEL
ENDIF

loJson = CreateObject('Chilkat.JsonObject')
loJson.EmitCompact = 0
loJson.Load(lcResponseJson)

* 
* See Parsing the Facebook User Feed for code showing how to parse the JSON feed content.
* 

loNextUrl = CreateObject('Chilkat.Url')

* Get the URL for the next page in the feed.
lcNextUrlStr = loJson.StringOf("paging.next")
DO WHILE loJson.LastMethodSuccess = 1

    ? "Next page URL: " + lcNextUrlStr

    loNextUrl.ParseUrl(lcNextUrlStr)

    * Prepare for getting the next page in the feed.
    * We can continue using the same REST object.
    * If already connected, we'll continue using the existing connection.
    * Otherwise, a new connection will automatically be made if needed.
    loRest.ClearAllQueryParams()
    loRest.AddQueryParams(loNextUrl.Query)

    lcResponseJson = loRest.FullRequestNoBody("GET","/v2.7/me/feed")
    IF (loRest.LastMethodSuccess <> 1) THEN
        ? loRest.LastErrorText
        RELEASE loOauth2
        RELEASE loRest
        RELEASE loJson
        RELEASE loNextUrl
        CANCEL
    ENDIF

    loJson.Load(lcResponseJson)
    * See Parsing the Facebook User Feed for code showing how to parse the JSON feed content.

    * Get the URL for the next page.
    lcNextUrlStr = loJson.StringOf("paging.next")
ENDDO

? "No more pages in the feed."

RELEASE loOauth2
RELEASE loRest
RELEASE loJson
RELEASE loNextUrl