Posts

Showing posts from January, 2020

RingCentral - How to use ringcentral Webhook features for events in Java

Image
Ring central cloud communication Platform provides webhook to notify you for any events like voicemail, SMS from your account.In this blog we will see how to set up you application to receive notifications from ringcentral platform through webhook. I am using jetty server to run my webserver which is listening to the port 5000. Server server = new Server( 5000 ) ; server.setHandler( new WebhookServer()) ; server.start() ; server.join() ; override the handle method to set status to 200 OK to return success response from webserver. public void handle(String target , Request baseRequest , HttpServletRequest request , HttpServletResponse response) throws IOException , ServletException { response.setStatus(HttpServletResponse.SC_OK) ; response.setHeader( "Validation-Token" , request.getHeader( "Validation-Token" )) ; if (request.getMethod() == "POST" ) { String body = request.getReader().lines().collect(java.util.stream....

Ring central Apps development experience

I came to know about Ringcentral communication APIs through one of my friend. Ringcentral have various APIs (SMS,Voice,Call,RingOut,etc). You can create a free developer account to get started with APIs. https://developers.ringcentral.com/ Creating an application in dev platform is very easy and simple and they have very good documentation of how to use them in different language (javascript,Python,java,Curl,C#). The API application will be up and running in sandbox environment in no time. Incase if you like the features it is easy to convert them int to production apps. The best part I like about ring central is they do have game challenger poral where you can solve the activity and get rewards.Please visit  https://hub.gamechanging.dev/

Ring central Developer website

Visit this developer game changer page to get to know about Ringcentral communication APIs https://gamechanging.dev