微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Xero OAuth2 问题

如何解决Xero OAuth2 问题

我已将我的网站迁移到 Xero 2.0,它可以用于创建发票。然而,几个小时后,我必须通过点击浏览器中的 https://something.com/xero-oauth2/authorization.php 文件重新授权,重新连接到 Xero 帐户,否则我的客户会看到类似于下面的内容......

致命错误:未捕获的 BadMethodCallException:未传递必需参数:/var/www/vhosts/something.com/httpdocs/xero-oauth2/vendor/league/oauth2-client/src/Tool/requiredParameterTrait.PHP 中的“refresh_token” :35 堆栈跟踪:#0 /var/www/vhosts/something.com/httpdocs/xero-oauth2/vendor/league/oauth2-client/src/Tool/requiredParameterTrait.PHP(53): League\OAuth2\Client\Grant \AbstractGrant->checkrequiredParameter('refresh_token',Array) #1 /var/www/vhosts/nasschools.org.uk/httpdocs/xero-oauth2/vendor/league/oauth2-client/src/Grant/AbstractGrant.PHP(76 ): League\OAuth2\Client\Grant\AbstractGrant->checkrequiredParameters(Array,Array) #2 /var/www/vhosts/something.com/httpdocs/xero-oauth2/vendor/league/oauth2-client/src/Provider/ AbstractProvider.PHP(535): League\OAuth2\Client\Grant\AbstractGrant->prepareRequestParameters(Array,Array) #3 /var/www/vhosts/something.com/httpdocs/xero-oauth2/createInvoice.PHP(160): League\OAuth2\Client\Provider\AbstractProvider->getAccesstoken(Object(League\O Auth2\Client\Grant\Refre in /var/www/vhosts/something.com/httpdocs/xero-oauth2/vendor/league/oauth2-client/src/Tool/requiredParameterTrait.PHP 在线 35

这有什么明显的问题吗?

            <?PHP 

            $storage = new StorageClass();
            $xeroTenantId = (string)$storage->getSession()['tenant_id'];

            if ($storage->getHasExpired()) {
                $provider = new \League\OAuth2\Client\Provider\GenericProvider([
                    'clientId' => 'XXXXXX','clientSecret' => 'XXXXXX','redirectUri' => 'https://something.com/xero-oauth2/callback.PHP','urlAuthorize' => 'https://login.xero.com/identity/connect/authorize','urlAccesstoken' => 'https://identity.xero.com/connect/token','urlResourceOwnerDetails' => 'https://api.xero.com/api.xro/2.0/Organisation'
                ]);

                $newAccesstoken = $provider->getAccesstoken('refresh_token',[
                    'refresh_token' => $storage->getRefreshToken()
                ]);

                // Save my token,expiration and refresh token
                $storage->setToken(
                    $newAccesstoken->getToken(),$newAccesstoken->getExpires(),$xeroTenantId,$newAccesstoken->getRefreshToken(),$newAccesstoken->getValues()["id_token"]);
            }

            // Configure OAuth2 access token for authorization: OAuth2
            $config = XeroAPI\XeroPHP\Configuration::getDefaultConfiguration()->setAccesstoken((string)$storage->getSession()['token']);
            $config->setHost("https://api.xero.com/api.xro/2.0");        

            $apiInstance = new XeroAPI\XeroPHP\Api\AccountingApi(
              new GuzzleHttp\Client(),$config
            );

            $xero_tenant_id = $xeroTenantId; // string | Xero identifier for Tenant

            // \XeroAPI\XeroPHP\Models\Accounting\Invoices | Invoices with an array of invoice objects in body of request
            $summarize_errors = true; // bool | If false return 200 OK and mix of successfully created objects and any with validation errors
            $unitdp = 4; // int | e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts


            $purchaseNumber = str_replace("&","&amp;",$_SESSION['purchasenumber']);
            $schoolOrGname = str_replace("&",$_SESSION['schoolorgname1']);
            $billingEmail = str_replace("&",$_SESSION['billingemail']);
            $billingAddress = str_replace("&",$_SESSION['billingaddress']);
            $billingCity = str_replace("&",$_SESSION['billingcity']);
            $billingPostalCode = str_replace("&",$_SESSION['billingpostcode']);
            $billingFullName = str_replace("&",$_SESSION['billingfullname']);
            $date = str_replace("&",$_SESSION['Now']);
            $dueDate = str_replace("&",$_SESSION['thirty']);
            $eventTitle = str_replace("&",$_SESSION['eventtitle']);
            $eventPrice = str_replace("&",$_SESSION['eventprice']);


            $address = new Address();
            $address->setAddresstype('POBox');
            $address->setAddressLine1($billingAddress);
            $address->setCity($billingCity);
            $address->setPostalCode($billingPostalCode);
            $address->setAttentionTo($billingFullName);

            $contact = new Contact();
            $contact->setName($schoolOrGname)
                ->setContactStatus('ACTIVE')
                ->setEmailAddress($billingEmail)
                ->setAddresses([$address]);

            $lineItem = new LineItem();
            $lineItem->setDescription($eventTitle)
                ->setQuantity(1)
                ->setAccountCode(4002)
                ->setUnitAmount($eventPrice)
                ->setTaxAmount(0)
                ->setTaxType('NONE');

            $invoice = new Invoice();
            $invoice->setDate($date)
                ->setDueDate($dueDate)
                ->setLineAmountTypes('Exclusive')
                ->setType('ACCREC')
                ->setReference($_SESSION['purchasenumber'])
                ->setStatus('AUTHORISED')
                ->setContact($contact)
                ->setLineItems([$lineItem]);

            try {
                $result = $apiInstance->createInvoices($xero_tenant_id,$invoice,$summarize_errors,$unitdp);
                header("Location: https://something.com/order-confirmation/");
            } catch (Exception $e) {

                print_r($e);
                echo '<br/><br/>Exception when calling AccountingApi->createInvoices: ',$e->getMessage(),PHP_EOL;
            }
            ?>

解决方法

您的用户创建令牌后,您似乎只需要在使用前刷新它。 access_token 仅持续 30 分钟。您需要在每次使用前刷新(并替换)它。不过,您使用的是 SDK,因此很容易得到支持。


自述文件中有一些示例代码向您展示如何避免以下错误:

  • 为授权配置 OAuth2 访问令牌:OAuth2

https://github.com/XeroAPI/xero-php-oauth2#authorizedresourcephp

主要部分是确保您在调用之前替换设置在 api 客户端上的刷新令牌。您确定在配置和会计客户端上正确设置了吗?

$config = XeroAPI\XeroPHP\Configuration::getDefaultConfiguration()->setAccessToken((string)$storage->getSession()['token']);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。