Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,18 @@ $lib->setToken($token->access_token)
### Authenticated


#### Single User Applications

If you only ever plan on interacting with a single user account feel free to hard code your access tokens into your app. This token should follow the spec described under authenticated requests.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets drop the second sentence, and just keep it as...

If you only ever plan on interacting with a single user account, feel free to hard code (or preferably configure) your access tokens into your app.


If this user is also the app owner, you can generate a token on your app page.

```php
$lib->setToken($access_token);
```
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Dashron this look good - or do you want the code example gone too?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definitely keep the example. This looks good.

Just fill out our CLA (keeps the code licensing clear): developer.vimeo.com/cla and I'll merge this in.


#### Multi-User Applications

1. Build a link to Vimeo so your users can authorize your app.

```php
Expand Down