Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INT-531 - docs(INT-531): update readme to us region #58

Merged
merged 1 commit into from
Aug 24, 2022
Merged
Changes from all commits
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
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,32 @@ Initialize the management client with your OAuth token from the my account secti
$managementClient = new \Storyblok\ManagementClient('your-storyblok-oauth-token');
```

### Initialization for US spaces

In order to use the US spaces you need to initialize the client passing all the required parameters, like this:

```php
$client = new \Storyblok\Client(
'your-storyblok-draft-token',
null,
'v2',
false,
'us'
);
```

The same goes for the management client:

```php
$managementClient = new \Storyblok\ManagementClient(
'your-storyblok-oauth-token',
null,
'v2',
false,
'us'
);
```

### Usage of the management client


Expand Down