My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
The answer seemed to be: $key = $consumerSecret . '&' . $tokenSecret; needs to be: $key = rawurlendcode($consumerSecret) . '&' . rawurlencode($tokenSecret); Thank you.
-
I did some research on the base string, and using this link: https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_1534939551.html#subsect_1521030602 I was able to use that function to generate the baseString, and now it is working! Thank you very much for your time and help.
-
Hi, I have checked and rechecked and tried several things. I am not seeing any whitespace. Using the code from https://github.com/netsuitephp/netsuite-php/blob/d365e07c6b42165cb4853b67365c2f5613d102a3/src/NetSuiteClient.php#L448 I changed my code to be: $values = [$account, $consumerKey, $token, $nonce, $timestamp];…
-
Hi, I found out why it is invalid, because the Error message Detail says: InvalidSignature But I do not know why it is invalid or what I am doing wrong. Did you look at the stackoverflow question I posted?