带有zoho的Yii2-curl oAuth2

时间:2018-07-16 11:19:04

标签: url yii2 uri yii2-advanced-app zoho

我正在研究Yii2。我有一个URL,当点击浏览器时,它会重定向到我的重定向URI

URL

https://accounts.zoho.com/oauth/v2/auth?scope=ZohoBugTracker.projects.ALL,ZohoBugTracker.bugs.ALL&client_id=1000&response_type=code&access_type=offline&redirect_uri=http://11.111.111.111:7000/api/oauth/zoho_auth

当我点击上面的URL时,它将在提供代码的同时重定向到我的重定向URI

重定向URI

点击上述URL后,重定向URI为http://11.111.111.111:7000/api/oauth/zoho_auth?code=1000&location=us&accounts-server=https%3A%2F%2Faccounts.zoho.com

重定向URI响应

  

{“消息”:“未找到与请求URI'http://11.111.111.111:7000/api/oauth/zoho_auth?code=1000&location=us&accounts-server=https:%2F%2Faccounts.zoho.com'相匹配的HTTP资源。”}

如何从上述回复中获取code

更新1

根据给出的建议。我尝试使用linslin发送一个GET请求。以下是我的代码

 public static function authToken()
{

    $curl = new curl\Curl();
    $response = $curl->setGetParams([
        'scope' => 'ZohoBugTracker.projects.ALL,ZohoBugTracker.bugs.ALL',
        'client_id' => '1000',
        'response_type' => 'code',
        'access_type' => 'offline',
        'redirect_uri' => 'http://11.111.111.111:7000/api/oauth/zoho_auth',
    ])
        ->get('https://accounts.zoho.com/oauth/v2/auth');

    echo $response;
    exit();
}

然后在一个函数中调用此函数,我实际上是通过该函数使用zoho API创建错误的

通过API测试我的POSTMAN

  

http://localhost:225/inventory-web/api/web/v1/installation/email?ref_no=28373340485858U&customer_id=37030315933&site_snap_name=28373340485858U_1530958224_site_9.jpg&flag=1

我的email函数是在API控制器中编写的。因此,它将首先命中issueSetup($param1,$param2)

public function actionEmail()
{
    .
    .
    .
    .

     Installations::setupEmail($param1, $param2, $param3);
    .
    .
    .
}

上面的功能setupEmail($param1,$param2,$param3)在我的控制器中。

 public static function setupEmail($ref_no, $customer_id, $install_id)
 {
     .
     .
     .
     .
     .
      list(params.....)= Installations::issueSetup($param1,$param2);
     .
     .
     .
     .      
  }

issuSetup功能

public static function issueSetup($param1,$param2)
{
     .
     .
     .
     .
    $token = Installations::authToken();

    exit();
    .
    .
    .
    . 
}

点击API后,在POSTMAN中我只是空窗口而无响应

enter image description here

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:2)

启用SSL并检查响应代码/响应标头以重定向到Zuhu上的userAuth表单时,它的工作效果很好:

$curl = new \linslin\yii2\curl\Curl();

/** @var Curl $response */
$curl->setGetParams([
        'scope' => 'ZohoBugTracker.projects.ALL,ZohoBugTracker.bugs.ALL',
        'client_id' => '1000',
        'response_type' => 'code',
        'access_type' => 'offline',
        'redirect_uri' => 'http://11.111.111.111:7000/api/oauth/zoho_auth',
])->setOption(CURLOPT_SSL_VERIFYPEER, true)
    ->setOption(CURLOPT_SSL_VERIFYHOST, false)
    ->setOption(CURLOPT_CAINFO, 'C:/Ampps/apache/conf/ssl_crt/cacert.pem')
    ->get('https://accounts.zoho.com/oauth/v2/auth');

$responseHeaders = $curl->responseHeaders;

if ($curl->responseCode === 302 && isset($responseHeaders['Location'])) {
    header("location: ".$responseHeaders['Location']);
    die();
}

答案 1 :(得分:0)

您是否尝试过此操作以获取错误

if ($curl->errorCode === null) {
   echo $response;
} else {

    echo '<pre>';print_r($curl->errorCode);
}