My Stuff
On Friday, October 10, 2025, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Share Your SuiteWorld Experience & Earn a Special Badge!
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?