Sample code for 30+ languages & platforms
Dart Requires Chilkat v11.0.0+

Get the Photos for a User

See more Facebook Examples

Demonstrates how to get the photos that the user has uploaded.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // 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
  final oauth2 = CkOAuth2();
  oauth2.accessToken = 'FACEBOOK-ACCESS-TOKEN';

  final rest = CkRest();

  // Connect to Facebook.
  try {
    rest.connect('graph.facebook.com', 443, true, true);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Provide the authentication credentials (i.e. the access key)
  rest.setAuthOAuth2(oauth2);

  // Indicate that we only want the photos the user has personally uploaded.
  rest.addQueryParam('type', 'uploaded');

  // We could limit the number of photos by setting a limit.
  rest.addQueryParam('limit', '5');

  // Gets the 1st page of photos. (Not the actual image data, but the information about each photo.)
  // See https://developers.facebook.com/docs/graph-api/reference/user/photos/ for more information.
  final String responseJson;
  try {
    responseJson = rest.fullRequestNoBody('GET', '/v2.7/me/photos');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final json = CkJsonObject();
  json.emitCompact = false;
  json.load(responseJson);
  print(json.emit());

  // A sample JSON response is shown below.  
  // This is the code to parse the JSON response.

  final dtime = CkDateTime();
  final bLocalTime = true;

  final dt = CkDtObj();
  var i = 0;
  final numItems = json.sizeOfArray('data');
  while (i < numItems) {
    json.i = i;
    print('--- $i');
    try {
      final name = json.stringOf('data[i].name');
      print('name: $name');
    } on ChilkatException {
      // json.stringOf() failed; continue anyway.
    }

    print('id: ${json.stringOf('data[i].id')}');

    // We can load the created_time into a CkDateTime...
    dtime.setFromTimestamp(json.stringOf('data[i].created_time'));
    dtime.toDtObj(bLocalTime, dt);

    print('${dt.month}/${dt.day}/${dt.year}  ${dt.hour}:${dt.minute}');
    i++;
  }

  // We can get the paging information as follows:
  print('URL for next page: ${json.stringOf('paging.next')}');
  print('before cursor: ${json.stringOf('paging.cursors.before')}');
  print('after cursor: ${json.stringOf('paging.cursors.after')}');

  // This is a sample JSON response:
  // { 
  //   "data": [
  //     {
  //       "created_time": "2016-09-29T20:46:18+0000",
  //       "name": "Ignore my posts -- I'm doing some testing for Facebook related programming...",
  //       "id": "10210199026347451"
  //     },
  //     { 
  //       "created_time": "2016-09-19T02:00:42+0000",
  //       "id": "10210091531240138"
  //     },
  //     { 
  //       "created_time": "2016-09-19T02:00:42+0000",
  //       "id": "10210091520620125"
  //     },
  //     { 
  //       "created_time": "2016-09-19T01:59:46+0000",
  //       "name": "I would've went for a swim had it not been for the sign",
  //       "id": "10210091522299917"
  //     },
  //     { 
  //       "created_time": "2016-09-12T00:37:35+0000",
  //       "id": "10210023316834798"
  //     }
  //   ],
  //   "paging": { 
  //     "cursors": { 
  //       "before": "MTAyMTAxOTkwMjYzNDc0NTEZD",
  //       "after": "MTAyMTAwMjMzMTU4MzQ3OTgZD"
  //     },
  //     "next": "https:\/\/graph.facebook.com\/v2.7\/10224048320139890\/photos?type=uploaded&limit=5&after=MTAyMTAwMjMzMTU4MzQ3OTgZD"
  //   }
  // }
  // 
}