检索用户/公司信息

时间:2016-10-24 08:29:01

标签: intuit-partner-platform quickbooks-online

在我们的应用程序中连接到Quickbook时,我们可以获得访问令牌和realmid但是在尝试实施Get App时我们在重定向到openid url后无法获得任何信息。我到目前为止所尝试的是

define('OAUTH_CONSUMER_KEY', $consumerkey);
        define('OAUTH_CONSUMER_SECRET', $consumersecret);

        define('OAUTH_URL', 'https://oauth.intuit.com/');
        define('APPCENTER_URL', 'https://appcenter.intuit.com/');

        define('OAUTH_REQUEST_URL', OAUTH_URL . 'oauth/v1/get_request_token');
        define('OAUTH_ACCESS_URL', OAUTH_URL . 'oauth/v1/get_access_token');
        define('OAUTH_AUTHORISE_URL', APPCENTER_URL . 'Connect/Begin');
        define('OAUTH_CURRENT_USER', APPCENTER_URL . 'api/v1/user/current');
try{

    $oauth = new OAuth(OAUTH_CONSUMER_KEY,OAUTH_CONSUMER_SECRET,OAUTH_SIG_METHOD_HMACSHA1,OAUTH_AUTH_TYPE_URI);
    $oauth->enableDebug();

    $request_token = $oauth->getRequestToken(OAUTH_CURRENT_USER,CALLBACK_URL);
    echo '<pre>';
    print_r($_POST);
    print_r($_GET);
    print_r($_REQUEST);
    print_r($_SESSION);
    echo $request_token;
    print_r($request_token);
    echo '</pre>';

} catch(OAuthException $e) {
    pr($e);
}

我无法获得有关上述代码的任何有价值的信息,我可能做错了,并且在完成授权并且quickbooks重定向到我们的openid网址时,期望会有realmid和访问令牌。任何信息,将不胜感激。

请注意我真的不知道这个,因为这是我第一次使用quickbooks api和相关技术。

更新

<?php
    require 'openid.php';
try {
    # Change 'localhost' to your domain name.
    $openid = new LightOpenID($_SERVER["HTTP_HOST"]);


    if(!$openid->mode) {
        if(isset($_GET['login'])) {

            $openid->identity = 'https://openid.intuit.com/OpenId/Provider';//'https://www.google.com/accounts/o8/id';
            $openid->required = array(
                'contact/email',
                'namePerson/first',
                'namePerson/last'
            );

            header('Location: ' . $openid->authUrl());
        }
        ?>
        <form action="?login" method="post">
            <button>Login with Google</button>
        </form>
        <?php
    } elseif($openid->mode == 'cancel') {
        echo 'User has canceled authentication!';
    } else {
        echo 'User ' . ($openid->validate() ? $openid->identity . ' has ' : 'has not ') . 'logged in.';
    }
} catch(ErrorException $e) {
    echo $e->getMessage();
}

当提交上面的表单时,会导致https://openid.intuit.com/OpenId/Provider

中的No OpenID Server

0 个答案:

没有答案