tonoman3g/oauth1-server 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

tonoman3g/oauth1-server

最新稳定版本:v0.3.1

Composer 安装命令:

composer require tonoman3g/oauth1-server

包简介

README 文档

README

#OAuth PSR2 Compliant OAuth 1.0 library base on Andy Smith's OAuth library found here: http://oauth.googlecode.com/svn/code/php/

Build Status

##2-Legged OAuth Server Example

$request = JoakimKejser\OAuth\OauthRequest::createFromGlobals();

// Simple Example ConsumerStore using arrays
$consumerStore = new JoakimKejser\OAuth\ConsumerStore\ArrayConsumerStore(array('key' => 'secret', 'key2' => 'secret2'));

// Simple Example NonceStore using arrays - you should use a persistent store
$nonceStore = new JoakimKejser\OAuth\NonceStore\ArrayNonceStore();

// We don't need a TokenStore since we'll be doing Two Legged
$server = new JoakimKejser\OAuth\Server($request, $consumerStore, $nonceStore, null);

// Add the signature method you wanna support
$server->addSignatureMethod(new JoakimKejser\OAuth\SignatureMethod\HmacSha1);

try {
    list($consumer, $token) = $server->verifyRequest();
    echo "Welcome consumer with key: " . $consumer->key;
} catch (JoakimKejser\OAuth\Exception $e) {
    echo "Something went wrong: " . $e->getMessage();
}

##2-Legged OAuth Client Example

$key = 'key';
$secret = 'secret';
$consumer = new JoakimKejser\OAuth\Consumer($key, $secret);

$sigMethod = new JoakimKejser\OAuth\SignatureMethod\HmacSha1;

$method = "POST";

//API endpoint to call
$api_endpoint = 'http://apiyouwanna/call';

//Create and sign the request - 2-Legged so token is null
$req = OauthRequest::createFromConsumerAndToken($consumer, $method, $api_endpoint, null);
$req->sign($sigMethod, $consumer, null); //Token is still null

$ch = curl_init();

$url = $req->getNormalizedHttpUrl();

// Get the URL for the GET request, without oauth parameters, as we'll add them to the Authorization header
if ($method == "GET") {
    $url = $req->toUrl(true);
}

// Set up CURL
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

// Add the Authorization header to the request
curl_setopt($ch, CURLOPT_HTTPHEADER, array($req->toHeader()));

// If it's post, add the post data
if ($method == "POST") {
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $req->toPostData(true));
}

// And go
$output = curl_exec($ch);
 
curl_close($ch);

echo $output;

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: Unknown
  • 更新时间: 2015-06-10

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固