Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Secure API Over SSL

Status
Not open for further replies.

frodofromtheshire

Programmer
Apr 28, 2011
1
GB
Hi, i have written a simple rest web service which must be accessed via SSL. For example:
Now say i expose my service and allow anyone to consume it. Do the people consuming it have to worry about SSL or is getting/posting data from a secure enough?

I'd appreciate your help. Thanks
 
SSL secures the communication between client and server. no one can eavesdrop on the packets transmitted. but anyone could still access any of the API calls. if you want to secure the API you will need to include authentication and authorization to verify who is making the request.

Jason Meckley
Programmer

faq855-7190
faq732-7259
 
For our API, we give each application an API key and authenticate based on that.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top