I'm generating ouath signature for token based aut...
# suitescript
a
I'm generating ouath signature for token based authentication in netsuite. However, every time there is a plus sign my signature it says invalid signature. Any ideas?
b
The percent encoding you will be doing thorughout uses %20 for spaces instead of +. Some encoding utilities use percent encoding as used in form posts, which uses + for spaces.
a
Yup. I got it now.