2013-01-14 43 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來生成此信息。 –