I am implementing a connection to Quickbooks through the v3 API with ColdFusion, and I have everything that works except reconnect ( https://appcenter.intuit.com/api/v1/connection/reconnect ). I can get information about the client, create / update invoices, etc., but not good luck with reconnecting.
From my application, I get error code 22 (authentication is required), but I send the same auth header that I send for any other API call to access the protected resource. The oauth spec does not specifically have a “reconnect” action, so my question is, what specific oauth properties should be included in the auth header to call Quickbooks again?
From the oauth 1.0 specification, are these headers for the consumer requesting an access token ?
oauth_consumer_key
oauth_token
oauth_signature_method
oauth_signature
oauth_timestamp
oauth_nonce
oauth_version
oauth_verifier
Or is it a header sent to access a protected resource
oauth_consumer_key
oauth_token
oauth_signature_method
oauth_signature:
oauth_timestamp
oauth_nonce
oauth_version
Or is it some other set of headers?
In addition, I tried using Dev Playgorund to check the connection again, and from there I get 24 - Invalid application token
So, I'm at a loss. What does Disconnect work for :)
Any help, recommendations, suggestions would be appreciated.
thanks
source share