@@ -11,7 +11,7 @@ The following example assumes we have the following permissions granted from the
1111$fb = new Facebook\Facebook([
1212 'app_id' => '{app-id}',
1313 'app_secret' => '{app-secret}',
14- 'default_graph_version' => 'v2.9 ',
14+ 'default_graph_version' => 'v2.10 ',
1515]);
1616
1717// Since all the requests will be sent on behalf of the same user,
@@ -109,7 +109,7 @@ The following example is a subset of the [first example](#example). We will only
109109$fb = new Facebook\Facebook([
110110 'app_id' => '{app-id}',
111111 'app_secret' => '{app-secret}',
112- 'default_graph_version' => 'v2.9 ',
112+ 'default_graph_version' => 'v2.10 ',
113113]);
114114
115115// Since all the requests will be sent on behalf of the same user,
@@ -176,7 +176,7 @@ Since we want the second request to be executed after the first one is completed
176176$fb = new Facebook\Facebook([
177177 'app_id' => '{app-id}',
178178 'app_secret' => '{app-secret}',
179- 'default_graph_version' => 'v2.9 ',
179+ 'default_graph_version' => 'v2.10 ',
180180]);
181181
182182// Since all the requests will be sent on behalf of the same user,
@@ -241,7 +241,7 @@ Since the requests sent in a batch are unrelated by default, we can make request
241241$fb = new Facebook\Facebook([
242242 'app_id' => '{app-id}',
243243 'app_secret' => '{app-secret}',
244- 'default_graph_version' => 'v2.9 ',
244+ 'default_graph_version' => 'v2.10 ',
245245]);
246246
247247$batch = [
0 commit comments