Skip to content

"RFC 5849: The OAuth 1.0 Protocol" client implementation for dart

License

Notifications You must be signed in to change notification settings

dart-backend/belatuk-oauth1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Belatuk OAuth1

Pub Version (including pre-releases) Null Safety License

Forked from the oauth1 project to support Dart 3

"RFC 5849: The OAuth 1.0 Protocol" client implementation for dart

Usage

Add to pubspec.yaml:

dependencies:
  belatuk_oauth1: ^3.0.0

Please use like below.

import 'dart:io';
import 'package:belatuk_oauth1/belatuk_oauth1.dart' as oauth1;

void main() {
  // define platform (server)
  var platform = oauth1.Platform(
      '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.hmacSha1              // signature method
      );

  // define client credentials (consumer keys)
  const String apiKey = '<Twitter API Key>';
  const String apiSecret = '<Twitter API Secret>';
  var clientCredentials = oauth1.ClientCredentials(apiKey, apiSecret);

  // create Authorization object with client credentials and platform definition
  var auth = oauth1.Authorization(clientCredentials, platform);

  // request temporary credentials (request tokens)
  auth.requestTemporaryCredentials('oob').then((res) {
    // redirect to authorization page
    print("Open with your browser: ${auth.getResourceOwnerAuthorizationURI(res.credentials.token)}");

    // get verifier (PIN)
    stdout.write("PIN: ");
    String verifier = stdin.readLineSync();

    // request token credentials (access tokens)
    return auth.requestTokenCredentials(res.credentials, verifier);
  }).then((res) {
    // yeah, you got token credentials
    // create Client object
    var client = oauth1.Client(platform.signatureMethod, clientCredentials, res.credentials);

    // now you can access to protected resources via client
    client.get('https://api.twitter.com/1.1/statuses/home_timeline.json?count=1').then((res) {
      print(res.body);
    });

    // NOTE: you can get optional values from AuthorizationResponse object
    print("Your screen name is " + res.optionalParameters['screen_name']);
  });
}

In addition, You should save and load the granted token credentials from your drive. Of cource, you don't need to authorize when you did it.

About

"RFC 5849: The OAuth 1.0 Protocol" client implementation for dart

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%