You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,18 @@ Create a client with your API key and secret:
48
48
$client = new Nexmo\Client(new Nexmo\Client\Credentials\Basic(API_KEY, API_SECRET));
49
49
```
50
50
51
+
For testing purposes you may want to change the URL that `nexmo-php` makes requests to. You can do this by providing an array containing `base_url` as the second parameter when creating a `Nexmo\Client` instance.
52
+
53
+
```php
54
+
$client = new Nexmo\Client(
55
+
new Nexmo\Client\Credentials\Basic(API_KEY, API_SECRET),
0 commit comments