gpt4 book ai didi

php - 用于公共(public)类型应用程序的 php 中的 xero api 集成

转载 作者:IT王子 更新时间:2023-10-29 00:06:16 29 4
gpt4 key购买 nike

我想在 php 中集成用于公共(public)应用程序的 xero api。我坚持使用 oauth 应用程序授权我从 github 下载代码 https://github.com/XeroAPI/XeroOAuth-PHP (在公开申请的xero api代码示例中找到)
我正在使用以下代码:

 require('/../lib/XeroOAuth.php');    
require('/../_config.php');
$useragent = "Xero-OAuth-PHP Public";
$signatures = array (
'consumer_key' => 'app_consumre_key',
'shared_secret' => 'app_secret_key',
'core_version' => '2.0'
);
$XeroOAuth = new XeroOAuth ( array_merge ( array (
'application_type' => XRO_APP_TYPE,
'oauth_callback' => OAUTH_CALLBACK,
'user_agent' => $useragent
), $signatures ) );
include 'tests.php';

我正在传递以下 xml 数据:

$xml = "<Invoices>    
<Invoice>
<Type>ACCREC</Type>
<Contact>
<Name>Martin Hudson</Name>
</Contact>
<Date>2013-05-13T00:00:00</Date>
<DueDate>2013-05-20T00:00:00</DueDate>
<LineAmountTypes>Exclusive</LineAmountTypes>
<LineItems>
<LineItem>
<Description>Monthly rental for property at 56a Wilkins Avenue</Description>
<Quantity>4.3400</Quantity>
<UnitAmount>395.00</UnitAmount>
<AccountCode>200</AccountCode>
</LineItem>
</LineItems>
</Invoice>
</Invoices>";
$params = array (
'oauth_callback' => OAUTH_CALLBACK
);
$response1 = $XeroOAuth->request ( 'GET', $XeroOAuth->url ( 'RequestToken', '' ), $params );
if ($XeroOAuth->response ['code'] == 200)
{
$outhtoken = $XeroOAuth->response ['response'];
$oauth_exp = explode('&',$outhtoken);
$oauth_exp_token = explode('=',$oauth_exp[1]);
$oauth_token = $oauth_exp_token[1];
}

首先我是oauth token,传入oauth invoice url

$response = $XeroOAuth->request('POST', $XeroOAuth->url('Invoices', 'core'),  array('oauth_token'=>$oauth_token), $xml);    

现在我收到 401 error 响应,oauth token 不匹配

我做错了什么?

最佳答案

如果您在使用 Xero 时遇到 OAuth 错误,他们的 OAuth Issues article有助于提供可能的解决方案。也就是说,没有提到“ token 不匹配”——我也无法在 Xero 社区中找到对错误的引用。

根据您发布的内容,第一个问题是您是否完成了 OAuth 流程?共有三个主要步骤(获取请求 token 、用户授权、获取访问 token ),上面的示例仅显示了第一步。 public.php您引用的文件包含所有步骤。

如果您确实让 OAuth 流程顺利运行,请确保 OAuth 访问 token 和密码随您的请求一起传递(您的示例请求中仅显示 token )。您可以在 XeroOAuth 对象中设置这些,因此最终请求可能看起来像

$XeroOAuth->config ['access_token'] = $oauth_token;
$XeroOAuth->config ['access_token_secret'] = $oauth_token_secret;
$XeroOAuth->request('POST', $XeroOAuth->url('Invoices', 'core'), array(), $xml);

我做了 a gist完整的过程基于 XeroOauth-PHP public.php,它演示了 OAuth 和创建发票。

关于php - 用于公共(public)类型应用程序的 php 中的 xero api 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26250530/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com