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
AnushaAnusha 

RE : Rest API Integration

Hello,

 

How can use Rest API in my Salesforce Account....

Please anybody help me..............

I want to connect  with Java environment....................

 

And I Installed one Package called "Rest Explorer"  How can I Use that...........

Please give me a Quick Response

 

thanks

gwestrgwestr

Anusha - you should start with the REST API Developer's guide.  It has a complete walk through of the API and has some samples for getting started in Java with an HTTP Client and our service endpoint (http://{instance}.salesforce.com/services/data/v21.0/), where instance is something like na7, na5, na9, etc. 

 

http://www.salesforce.com/us/developer/docs/api_rest/api_rest.pdf

 

The REST Explorer is a point and click way of seeing and manipulating your data through a tab in Salesforce.  It uses an HttpClient in Apex to connect to the REST API and returns both a formatted response and the raw response.  Use it when you're planning what you'd like your program to do.

AnushaAnusha

Thats ok, but How can i configure that Apache...   stuff, thats what i need

if you know please help me

cloudcodercloudcoder

Google is your friend:

 

http://onlamp.com/pub/a/onlamp/2008/03/04/step-by-step-configuring-ssl-under-apache.html

 

Most important thing is that you need to support ssl for the callback url.

 

You may also find the following article helpful:

 

http://wiki.developerforce.com/index.php/Getting_Started_with_the_Force.com_REST_API

Mariappan PerumalMariappan Perumal

Hi,

 

I am working with rest api and i have read the whole things in this Getting Started with Rest Api.

http://wiki.developerforce.com/page/Getting_Started_with_the_Force.com_REST_API

 

I have 2 questions

 

1) without enable SSL in my local server , it is not possible to rest api ah. 

 2) How can i get the necessay file (apache httpclient 3.1, apache logging, apache codec) suitable to my java version and so.

The link given there is showing all the versions of that things. 

 

Kindly assist me  with this.

 

Thanks in advance.