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
Anshita JainAnshita Jain 

Accessing apex class from a c# app

Hello!

I created a c# .net application where I first send a request for a login authentication token and get a service url, oathtoken, etc back. 

I am now trying to send a http get request to an apex class in my developers console and this is where I am stuck. I am sending a request to the service url with the oauthtoken. I append "/services/apexrest/Login/" to the service url and send the request to it. I am appending that because that is the uri I use to send a request to my class on workbench. However, this is not working and giving me a 404 error. What do I need to append to my service url to reach my apex class?