We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4833c56 commit f656326Copy full SHA for f656326
README.md
@@ -16,11 +16,15 @@ the code.
16
17
## Usage
18
19
-The following example shows how you can use the client:
+The following example shows how you initialize the client:
20
21
```csharp
22
-CredentialsInterface credentials = new HttpBearer('[access_token]');
23
-Client client = Client::build(credentials);
+using SdkFabric.Twitter.Client;
+
24
+Client client = Client.Build("[access_token]")
25
26
// @TODO use the client
27
```
28
29
+You can find all available operations and types at:
30
+https://app.typehub.cloud/d/sdkfabric/twitter
0 commit comments