News & Announcements User Community Developer Community

Welcome to the RingCentral Community

Please note the community is currently under maintenance and is read-only.

Search
Make sure to review our Terms of Use and Community Guidelines.
  Please note the community is currently under maintenance and is read-only.
Home » Developers
How to implement Webhook for Ringcentral app(platform Type Browser based) in java
Tags: webhooks
Oct 6, 2020 at 5:43am   •   1 replies  •  0 likes
akkarao b

Hi, we need to use webHooks in our application. My RingCentral app platform type is browser based so it not supporting password flow. But to use webhooks it seems like password flow is mandatory as i go through in api reference.So can you please suggest how to use webhook for platform type browser based.

This is our application Type and permissions.

App Type - Web browser (Javascript)

Access - All RingCentral customers

Available Auth Flows

Auth Code(true)

Implicit(true)

Password(false)

Refresh token(true)

1 Answer
answered on Oct 6, 2020 at 7:18am  

Check out and combine these 2 dev guide examples:

  1. Authorization flow
  2. Webhooks

See the sample code below where I added the "/subscribe" case to handle webhook subscription.

case "/test":
  String api = request.getParameter("api");
  String result = "";
  switch (api) {
    case "extension":
      result = JSON.toJSONString(rc.restapi().account().extension().list(), SerializerFeature.PrettyFormat);
      break;
    case "extension-call-log":
      result = JSON.toJSONString(rc.restapi().account().extension().calllog().list(), SerializerFeature.PrettyFormat);
      break;
    case "account-call-log":
      result = JSON.toJSONString(rc.restapi().account().calllog().list(), SerializerFeature.PrettyFormat);
      break;
  }
  response.getWriter().println("<pre>" + result + "</pre>");
  break;
case "/subscribe":
  String result = ""; 
  var eventFilters = new String[]{
         "/restapi/v1.0/account/~/extension/~/message-store/instant?type=SMS"
         }
  CreateSubscriptionRequest createSubscriptionRequest = new CreateSubscriptionRequest()
      .eventFilters(eventFilters)
      .deliveryMode( new NotificationDeliveryModeRequest()
        .transportType("WebHook")
        .address(DELIVERY_ADDRESS)
      );
  var result = rc.restapi().subscription().post(createSubscriptionRequest);



 0



A new Community is coming to RingCentral!

Posts are currently read-only as we transition into our new platform.

We thank you for your patience
during this downtime.

Try Workflow Builder

Did you know you can easily automate tasks like responding to SMS, team messages, and more? Plus it's included with RingCentral Video and RingEX plans!

Try RingCentral Workflow Builder

PRODUCTS
RingEX
Message
Video
Phone
OPEN ECOSYSTEM
Developer Platform
APIs
Integrated Apps
App Gallery
Developer support
Games and rewards

RESOURCES
Resource center
Blog
Product Releases
Accessibility
QUICK LINKS
App Download
RingCentral App login
Admin Portal Login
Contact Sales
© 1999-2024 RingCentral, Inc. All rights reserved. Legal Privacy Notice Site Map Contact Us