Does anyone know of any helpful resources for secu...
# suitescript
s
Does anyone know of any helpful resources for securing an external Suitelet?
b
depends on what kind of security you are looking for
its not very hard to implement basic authentication
or at least something that is partially basic authentication, you would have problems implementing something that actually follows the spec and returns the proper challenge/response
e
you can also limit access by validating the ip address for the inbound request before any code gets executed and require an "api key" of sorts that can get validated by the suitelet code.
t
you could use a restlet?