How to generate oauth 1 “oauth/token/request” in magento 2?
I am trying to generate oauth 1 oauth/token/request for magento 2, I am using the below code $characters = ‘abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890’; $nonce = ”; $maxRand = strlen($characters) – 1; $length = 32; for ($i = 0; $i < $length; ++$i) {… Read More »How to generate oauth 1 “oauth/token/request” in magento 2?