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 9fcc09f commit f12e8a7Copy full SHA for f12e8a7
docs/intro.md
@@ -29,7 +29,7 @@ using RestSharp;
29
using RestSharp.Authenticators;
30
31
var client = new RestClient("https://api.twitter.com/1.1") {
32
- Authenticator = new HttpBasicAuthenticator("username", "password");
+ Authenticator = new HttpBasicAuthenticator("username", "password")
33
};
34
var request = new RestRequest("statuses/home_timeline.json");
35
var response = await client.GetAsync(request, cancellationToken);
0 commit comments