2013-01-14 212 views
0

我正在制作QuickBooks Online应用程序。如何我的客户获得这样的信息:连接到QuickBooks Online IPP

  • 访问密钥
  • 访问密钥的秘密
  • 消费重点
  • 用户端密钥

我的文档是在这里:

http://www.jmawebtechnologies.com/support-blog/january-2013/nopcommerce-quickbooks-online-set-up-and-installat

在我的Intuit开发者门户中,我有这4条信息。我有一个应用程序配置文件:

https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0020_Connect/Create_An_App_Profile

每个客户都会有不同的访问密钥,访问密钥保密,消费者密钥和消费者的关键秘诀是什么?根据我的经验,似乎只有RealmId(公司ID)发生变化,其他信息保持不变。

回答

3

当您创建一个应用程序配置文件按规定在本页面-https说明:您将提供与消费者密钥和秘密//ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0020_Connect/Create_An_App_Profile 。您需要使用此密钥进行oauth握手以获取访问令牌和密钥。

https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0020_Connect/0010_From_Within_Your_App/Implement_OAuth_in_Your_App

每个用户都将获得一个新的访问令牌和秘密,但消费者键/秘密将是您的应用程序的所有用户相同。

+0

约瑟夫,用户不需要只有你的应用程序的信息。用户将登录到他们的Intuit帐户,并授予您应用程序对其数据的权限,然后使用密钥/密钥对通过API访问其数据。 –

+0

我明白他在说什么。我在这里使用oauthgrant和oauthhandler https://code.intuit.com/integration/viewvc/viewvc.cgi/IntuitAnywhere-.NET/HelloIntuitAnywhere/HelloIntuitAnywhere/?root=intuitanywhere&system=exsy1003来生成此信息。 –