The example code in the moneybird API for oauth doesn’t give a clear picture of what has to be performed to get the access token.
You need to pass the following values
oauth_consumer_key, oauth_signature_method=”PLAINTEXT”, oauth_timestamp, oauth_nonce, oauth_callback, oauth_signature. Even though the recommended signature method is HMAC-SHA1, Plaintext works without issues
You will receive a request_token and request_secret from the above request
Step 2
authorize_uri = “https://#{subdomain}.moneybird.nl/oauth/authorize?oauth_token=request_token”
redirect user to authorize_uri and you will receive a oauth_verifier
Step 3
To get the access token
You will receive a token and token secret. Store it in DB for later use.
Related Posts
Facebook Debugger – Bad Response Code: URL returned a bad HTTP response code : 404
I faced a issue with one of my clients sites after migration. The facebook debugger…
Jetpack not connecting 404 error
Check the url www.domain.com/xmlrpc.php and you should receive only “XML-RPC server accepts POST requests only.”…
Bigcommerce WEBDAV tool
I had the opportunity to work in bigcommerce for one of the clients and i…
Bigcommerce Custom CSS
To add custom style for existing theme login into the server using webdav and you…