定制 smorken/oauth1 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

smorken/oauth1

最新稳定版本:v10.2.0

Composer 安装命令:

composer require smorken/oauth1

包简介

OAuth 1 library, build specifically for Brainfuse

README 文档

README

OAuth1 package

This library is built specifically for use with Brainfuse. It may not have all of the functionality necessary for a complete OAuth service call. But it might if you are creative!

Laravel

  • Adding to your composer.json should auto-register the service provider, if not:

    • Add \Smorken\OAuth1\ServiceProvider to the config/app.php service providers
  • If needed, publish the config

    • php artisan vendor:publish --provider="Smorken\OAuth1\ServiceProvider" --tag=config
  • Environment variables are available for most options in the config (.env)

  • Factory

    • $factory = app(\Smorken\OAuth1\Contracts\Factory::class);

Use

The whole process is as follows (Request Token):

$uri = 'http://term.ie/oauth/example/request_token.php';

$opts = [
    'user_id'                          => 'abcd',
    'lis_person_name_fname'            => 'Fname',
    'lis_person_name_lname'            => 'Lname',
    'lis_person_contact_email_primary' => 'email@example.com',
    'oauth_consumer_key'               => 'key,
];

$signer = new Signature(new \Smorken\OAuth1\Hashers\HmacSha1('secret'));

$params = new Params(new Nonce());

$client = new \Smorken\OAuth1\Clients\Guzzle(new \GuzzleHttp\Client());

$factory = new OauthFactory(new Authorization(), $client, $params, $signer);

$resp = $factory->post($uri, $opts, ['debug' => true]);
// OR
//$resp = $factory->get($uri, $opts);
// OR
//$resp = $factory->authorizationHeader($uri, $opts, 'POST');

echo $resp->getBody() . PHP_EOL;

You can also manually follow the steps in the Factory if the defaults don't do what you need.

Example of building a request manually

$uri = 'http://term.ie/oauth/example/request_token.php';

$opts = [
    'user_id'                          => 'abcd',
    'lis_person_name_fname'            => 'Fname',
    'lis_person_name_lname'            => 'Lname',
    'lis_person_contact_email_primary' => 'email@example.com',
    'oauth_consumer_key'               => 'key,
];

$signer = new Signature(new \Smorken\OAuth1\Hashers\HmacSha1('secret'));

$params = new Params(new Nonce());

$client = new \Smorken\OAuth1\Clients\Guzzle(new \GuzzleHttp\Client());

$request = new \GuzzleHttp\Psr7\Request(
    'POST',
    $uri,
    ['Content-Type' => 'application/x-www-form-urlencoded'],
    $params->sign($signer, $uri, 'POST')->toQueryString()
);

$resp = $client->send($request);

echo $resp->getBody() . PHP_EOL;

统计信息

  • 总下载量: 181
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-06-28