
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
How to add automatic discounts in Ecwid
Automatic Discounts option is available by default in ecwid. You can visit the URL https://my.ecwid.com/store/storeid#discounts…
Add custom Javascript to webflow pages
How to add custom javascript/jquery/css to specific webflow pages
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.”…