function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Adam Cimino 3Adam Cimino 3 

public rest service

I have a requirement to create a publicly accessible web service.
This is what I did
1)      Set up a Site on my org called publicWebService
https://sandbox.cs14.force.com/publicWebService/
2)      I create a class to handle a post http request
@RestResource(urlMapping='/logService/v1')
3)      I grated access to this class  in the sites profile
I set it up in my sandbox first and it works perfectly
Access as follows
https://sandbox.cs14.force.com/publicWebService/services/apexrest/logcall/v1?parm1=blabla&parm2=haha
When i moved my implementation into my production org. I did the same thing.
Site = https://production.force.com/publicWebService/
But i can’t access it like i did in my sandbox
https:// production.force.com/publicWebService/services/apexrest/logcall/v1?parm1=blabla&parm2=haha
Am I missing something or have to do something differently
Much appreciated
 
Neetu_BansalNeetu_Bansal
Hi Adam,

What error you received? And just make sure that you have followed all the sames steps, like giving access to the service on Public Sites.
Also, you are using the correct site URL.

Thanks,
Neetu