I know QBO doesn't natively support PHP, but If I can get authenticated requests working, I can just use their API directly.
I've got the following pieces of data
appid
oAuth consumer key
oAuth secret key
I'm making an API call to this endpoint
https://qb.sbfinance.intuit.com/v3/company/<<my company id>>/item
I'm using googles oauth-php library to try to make this work. Here is the result
message=Exception authenticating OAuth; errorCode=003200; statusCode=401
I'm obviously missing details on what to do here, ex: how to send the app id along with this. Does anyone have any experience or examples of getting a signature using PHP?
Thanks!