We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 804ded7 commit 97c2daeCopy full SHA for 97c2dae
1 file changed
README.md
@@ -33,15 +33,15 @@ using Contentstack.Core.Configuration; // ContentstackOptions
33
You will need to specify the API key, Access token, and Environment Name of your stack to initialize the SDK:
34
35
``` cs
36
-ContentstackClient stack = new ContentstackClient("api_key", "access_token", "enviroment_name");
+ContentstackClient stack = new ContentstackClient("api_key", "delivery_token", "enviroment_name");
37
```
38
or:
39
40
41
var options = new ContentstackOptions()
42
{
43
ApiKey = "<api_key>",
44
- AccessToken = "<access_token>"
+ DeliveryToken = "<delivery_token>"
45
Environment = "<environment>"
46
}
47
ContentstackClient stack = new ContentstackClient(options);
0 commit comments