I'm unable to find any concrete examples of how to interact with CRM using REST where we create the raw HTTP URLs in code.
In theory I should be able to create raw HTTP requests and send them to CRM for authentication and data access.
Everything I'm finding talks about OData or SOAP, yet at the end of the day these will just all do raw HTTP so why no documentation about this?
I can do this with SalesForce and they document the low level HTTP syntax and headers etc for stuff like OAuth authentication and so on.
I'm going to use Java to do raw HTTP to CRM (off site) just as I have already with SalesForce but I'm finding it much harder with CRM because everything is buried under SOAP or OData - no insight or documentation about the eventual raw HTTP messages.
I'm using Advanced Rest Client tool in Chrome to experiment but so far just get a WSDL response to some text messages, all very bewildering.
Here's the SalesForce equivalent of what I'm trying to do.
In that article you'll see an example HTTP request:
I'm assuming that - ultimately - we can do the same with CRM (it's all HTTP after all) but can't find any info whatsoever on this.
Thanks