Posts

Showing posts from April, 2021

RingCentral- A new era of fast messaging implementation

Image
RingCentral SMS Functionality Experience Hi folks, in this blog I'll share my experience with RingCentral for sending the sms via a java code.  As a prerequisite, you must have your developer account created at developers.ringcentral.com 1. Login to the portal and go to apps section shown below 2. Now create an app by providing the details as suggested in the wizard. I've used java class to send the sms so password grant type has been selected automatically, you can choose yours based on your app/ requirement 3. You must select the 'App Permissions' to at 'Read Accounts' to facilitate SMS functionality 4. Get credentials 5. Set app permissions whatever applicable in your case- 6. Get all the access details of your app. 7. Pls try the OOTB feature via dev portal itself for sending the sms directly- Next, We'll create a sample Gradle java project and will use the following sample code:  build.gradle plugins {     id 'java-library' } dependencies {  

WSO2 APIM- Store APIs get specific one based on multiple attributes

Image
  Problem Statement I am using wso2 APIM 2.6.0 store APIs to get specific API details. The problem is that I have 3 APIs with the same name but different versions ( pizzashackapi with version 1.0.0, pizzashackapi with version 1.1.0 and pizzashackapi with version 1.1.1 ) and I need to pass multiple parameters in the query section of the API to get more fine-grained result, however, it's not working as expected- WSO2 Documentation  It says Supported attribute modifiers are [version, context, status, description, subcontext, doc, provider, tag] but I am not able to pass the multiple attributes in the query section (Ref-  https://docs.wso2.com/display/AM260/apidocs/store/#!/operations#APICollection#apisGet) curl https://localhost:9443/api/am/store/v0.14/apis I tried using the following  Store API:  https:/localhost:9443/api/am/store/v0.14/apis?query=pizzashackapi&version=1.1.0 https:/localhost:9443/api/am/store/v0.14/apis?query=name:pizzashackapi&version=1.1.0 https:/localhost: