Posts

Showing posts from May, 2017

SALESFORCE INTEGRATION FROM TWILIO USING REST API

Integration with twilio using rest api. Using twilio service we can  send message  and  make call  to any numbers(Numbers should be verified from twilio). For doing this we should have little knowledge of  rest api .  Here i share snippet of the code of  Visualforce page and the Apex controller for both sending message and making call : For sending message : Visualforce Page:  < apex:page controller="SendMessage" tabStyle="Send_Message__tab">          < apex:form id="frm" >         < apex:outputText value="{!error}" style="color:green;font-weight:50px"/ >           < apex:pageBlock title="Message Sender" >             < apex:pageBlockSection columns="2" title="Information" collapsible="false" >                           ...