我已经阅读了这个相关的问题; Request OAuth token from BitBucket
在上面的那个问题中,它使用curl。但必须有办法用gentlero-api做到这一点 因为它有关于oauth的php类。
$bb_user = 'myuser_name';
$bb_pass = 'mypasss';
$account_name = 'account_name';
$repo_slug = 'repo_name';
$issue = new issues();
$issue->setCredentials( new Basic($bb_user, $bb_pass) );
// iwanna do something like. but how??
// $issue->setCredentials( new Oauth($key, $secret) );
$issue->create($account_name, $repo_slug, array(
'title' => 'konu',
'content' => 'içerik metin 123123',
'kind' => 'proposal',
'priority' => 'blocker'
));
我想做那样简单的oauth但是。我找不到任何好的资源。
修改
//我是这样用基本身份验证做的。 https://github.com/gentlero/bitbucket-api/blob/master/docs/repositories/issues.md
//prepare
$issue = new Bitbucket\API\Repositories\Issues();
$issue->setCredentials( new Bitbucket\API\Authentication\Basic($bb_user, $bb_pass) );
//create new issue
$issue->create($account_name, $repo_slug, array(
'title' => 'dummy title',
'content' => 'dummy content',
'kind' => 'proposal',
'priority' => 'blocker'
));
也有这个;这段代码做了oauth。
// OAuth 1-legged example
// You can create a new consumer at: account/user/<username or team>/api
$oauth_params = array(
'oauth_consumer_key' => 'aaa',
'oauth_consumer_secret' => 'bbb'
);
$user = new Bitbucket\API\User;
$user->getClient()->addListener(
new Bitbucket\API\Http\Listener\OAuthListener($oauth_params)
);
// now you can access protected endpoints as consumer owner
$response = $user->get();
我想要做的就是复制用户的身份验证并让auth发布,就像这样。
$credss = $user->getcredenditals();
$issue->setCredentials( $credss ) ;
编辑:yahooooooooooo !! 我学会了gazaret表格回答该怎么做。这是我的工作代码
public function createIssue()
{
$account_name = 'companyy';
$repo_slug = 'issuer';
$oauth_params = array(
'oauth_consumer_key' => 'key',
'oauth_consumer_secret' => 'secret'
);
$issue = new issues();
//this was the missing peace of the puzzle . one single line
$issue->getClient()->addListener( new OAuthListener($oauth_params) );
$issue->create($account_name, $repo_slug, array(
'title' => 'konu o_authlu',
'content' => 'içerik metin 123123',
'kind' => 'proposal',
'priority' => 'blocker'
));
return;
}
答案 0 :(得分:0)
我是这样做的。仅供参考,您必须使用oauth消费者密钥&amp;来自个人账户而非公司账户的秘密。
protected $bbCompany = 'companyname';
protected $oauth_params = array(
'oauth_consumer_key' => 'key',
'oauth_consumer_secret' => 'secret'
);
protected function bitBucketIssues()
{
$issue = new Bitbucket\API\Repositories\Issues();
$issue->getClient()->addListener(
new Bitbucket\API\Http\Listener\OAuthListener($this->oauth_params)
);
return $issue;
}
然后,您可以编写新方法,首先通过调用bitBucketIssues()然后发出请求来创建$ issue的新实例,例如:
public function fetchBitBucketAllIssues($slug)
{
$issue = $this->bitBucketIssues();
$response = $issue->all($this->bbCompany, $slug);
if ($this->checkBitBucketResponse($response)) {
return json_decode($response->getContent());
} else {
return null;
}
}
此方法从repo“slug”获取所有问题,然后在单独的方法中检查响应。这种方法很简陋,但对我来说很重要:
protected function checkBitBucketResponse($response)
{
$headers = $response->getHeaders();
if ($headers[0] == "HTTP/1.1 404 NOT FOUND") {
return false;
}
elseif ($headers[0] != "HTTP/1.1 200 OK") {
throw new InternalErrorException('Bad response received from BitBucket: ' . $response->getContent());
}
else {
return true;
}
}