3

我正在使用“连接到 QuickBooks”按钮创建到 QuickBooks Online 的连接,如下页所述:

http://docs.developer.intuit.com/0025_Intuit_Anywhere/0010_Getting_Started/0020_Connect/0010_From_Within_Your_App/Implement_OAuth_in_Your_App

使用此方法可以检索用户输入的 Intuit 用户 ID(在 Intuit 登录对话框中提示时),以便我可以将该用户 ID 与返回的访问令牌、访问令牌密码和 realmId 相关联。

4

1 回答 1

3

Intuit 有一个“当前用户”API,可以满足您的要求。您可以在从 Intuit 获得 OAuth 令牌后立即发出此 API 请求,然后在您的应用程序中记录关联。

这是它的文档:

您基本上对此 URL 执行 OAuth GET 请求:

Intuit 会返回一个这样的响应,它将为您提供此人的姓名和电子邮件地址:

<?xml version="1.0"?>
<UserResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xmlns="http://platform.intuit.com/api/v1">
  <ErrorCode>0</ErrorCode>
  <ServerTime>2012-04-13T18:47:34.5422493Z</ServerTime>
  <User>
    <FirstName>John</FirstName>
    <LastName>Doe</LastName>
    <EmailAddress>JohnDoe@g88.net</EmailAddress>
    <IsVerified>true</IsVerified>
  </User>
</UserResponse>
于 2013-04-24T17:43:11.340 回答