belatuk_oauth1

Creator: coderz1093

Last updated:

0 purchases

belatuk_oauth1 Image
belatuk_oauth1 Images

Languages

Categories

Add to Cart

Description:

belatuk oauth1

Belatuk OAuth1 #



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
copied to clipboard
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']);
});
}
copied to clipboard
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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.