Skip to content
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add to `pubspec.yaml`:

```yaml
dependencies:
oauth1: ^1.0.1
oauth1: ^1.0.4
```

Please use like below.
Expand All @@ -27,7 +27,7 @@ void main() {
'https://api.twitter.com/oauth/request_token', // temporary credentials request
'https://api.twitter.com/oauth/authorize', // resource owner authorization
'https://api.twitter.com/oauth/access_token', // token credentials request
oauth1.SignatureMethods.HMAC_SHA1 // signature method
oauth1.SignatureMethods.hmacSha1 // signature method
);

// define client credentials (consumer keys)
Expand Down