My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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?