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
Sameer Aman 2Sameer Aman 2 

I have integrated my drupal commerce site with salesforce through rest api. Now all the CRUD operations are working very well . But i am not able to do CRUD operation if my ip address is not listed on network access.

 $params = "grant_type=password&client_id=".CLIENT_ID.
            "&client_secret=".CLIENT_SECRET.
            "&username=$username&password=$password";
//here $password is only password , i have not concated it with profile security token

//i have put allowed all ip access from connected app

Please reply soon.