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
uxtx_timuxtx_tim 

sites error - api currently disabled for this user

My code runs fine in visualforce but when I publish to site it gives me an error indicating that the api is disabled for a particular user.

 

Coincidentally, there isn't any custom code here - it's taken directly from the example in the ajax toolkit developer's guide:

 

 

<apex:page >
    <script type="text/javascript">
    var __sfdcSessionId = '{!GETSESSIONID()}';
    </script>
    <script src="../../soap/ajax/21.0/connection.js"
          type="text/javascript"></script>
    <script type="text/javascript">     window.onload = setupPage;
    function setupPage() {
      //function contains all code to execute after page is rendered  
    

      var state = { //state that you need when the callback is called  
    
          output : document.getElementById("output"),
          startTime : new Date().getTime()};

      var callback = {
          //call layoutResult if the request is successful  
    
          onSuccess: layoutResults,

          //call queryFailed if the api request fails  
    
          onFailure: queryFailed,
          source: state};

      sforce.connection.query(
          "Select Id, Name, Industry From Account order by Industry",
           callback);
  }

  function queryFailed(error, source) {
    source.output.innerHTML = "An error has occurred: " + error;
  }

  /**
  * This method will be called when the toolkit receives a successful
  * response from the server.
  * @queryResult - result that server returned
  * @source - state passed into the query method call.
  */  
    
  function layoutResults(queryResult, source) {
    if (queryResult.size > 0) {
      var output = "";

      //get the records array  
    
      var records = queryResult.getArray('records');

      //loop through the records and construct html string  
    
      for (var i = 0; i < records.length; i++) {
        var account = records[i];

        output += account.Id + " " + account.Name +
            " [Industry - " + account.Industry + "]<br>";
      }

    //render the generated html string  
    
    source.output.innerHTML = output;
    }
  }
  </script>

    <div id="output"> </div>
   
</apex:page>

 

So my questions are:

can the ajax toolkit be enabled on force.com sites for an anonymous, read only user?

if so, how? 

if not, is there a workaround?

 

 

 

aalbertaalbert

No, the API is not enabled for the Site guest user. You should use Apex controller's to access the data and logic of your Site page. 

uxtx_timuxtx_tim

thanks 

i guess my next question is:

 

for what users can the api enabled?  customer portal?  authenticated sites?  

 

thanks again

aalbertaalbert

Yes, the portal licenses are api enabled. You can see the setting on the associate Profile. Look for "API Enabled" on the Profile detail. 

 

If you are designing Visualforce pages, you don't need to use the API to access the Force.com data. You can easily get to it via the Apex Controller. 

DrawloopSupportDrawloopSupport

Albert,

 

Is there any possibility of allowing API access for a Guest User License? Or is there any other way to allow API access to a user of a publicly available site?

 

Thanks!

calvin_nrcalvin_nr

I wonder if you found an answer to this issue. Currently I am finding that the Site's guest user does not have access to the Chatter APIs and we want to just display the chatter feed as read only. Works fine in a Stand alone VF page but does not work on the site because of this.