Skip to content

Commit 8207e3f

Browse files
nayafiaSammyK
authored andcommitted
fix links
1 parent da4fc45 commit 8207e3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ if (isset($accessToken)) {
227227

228228
When a user first logs into your app, the access token your app receives will be a short-lived access token that lasts about 2 hours. It's generally a good idea to exchange the short-lived access token for a long-lived access token that lasts about 60 days.
229229

230-
To extend an access token, you can make use of the [`OAuth2Client`](reference/Facebook.md#getOAuth2Client()).
230+
To extend an access token, you can make use of the [`OAuth2Client`](reference/Facebook.md#getoauth2client).
231231

232232
```
233233
// OAuth 2.0 client handler
@@ -269,7 +269,7 @@ echo 'Logged in as ' . $userNode->getName();
269269

270270
The `get()` method will return a [`Facebook\FacebookResponse`](reference/FacebookResponse.md) which is an entity that represents an HTTP response from the Graph API.
271271

272-
To get the response in the form of a nifty collection, we call `getGraphUser()` which returns a [`Facebook\GraphNodes\GraphUser`](reference/GraphNode.md#GraphNode-instance-methods) entity which represents a user node.
272+
To get the response in the form of a nifty collection, we call `getGraphUser()` which returns a [`Facebook\GraphNodes\GraphUser`](reference/GraphNode.md#graphnode-instance-methods) entity which represents a user node.
273273

274274
If you don't care about fancy collections and just want the response as a plain-old array, you can call the `getDecodedBody()` method on the `FacebookResponse` entity.
275275

0 commit comments

Comments
 (0)