Posts

Showing posts from June, 2021

Pega and Whatsapp Integration

Image
 Pega and Whatsapp Integration Following the procedure from  Official Whatsapp Cloud API 1. Set up Developer Assets and Platform Access The  WhatsApp Cloud API  and  WhatsApp Business Management API  are part of Meta’s Graph API, so you need to set up a Meta developer account and a Meta developer app. To set that up: Register as a Meta Developer  Enable two-factor authentication for your account  Create a Meta App : Go to  developers.facebook.com  >  My Apps  >  Create App . Select the "Business" type and follow the prompts on your screen. Click the app you want to connect to WhatsApp from the App Dashboard. Click Set up when you locate the "WhatsApp" product by scrolling down. Following that, you will have the choice to choose an existing Business Manager (if you have one) or, if you prefer, have one created for you automatically through the onboarding process (you can customize your business later, if needed). Make...

Spotify Playlist Creation From Pega

Image
Spotify Playlist Creation From Pega  Step 1 : Go to  https://developer.spotify.com          Step 2 : Log in with your spotify account and click "Create App" Step 3 : Click "Edit Settings and add your redirect URI:   http://localhost:PORTNUMBER/prweb/PRRestService/oauth2/v1/redirect . Click Save. Step 5 : We need the spotify account user ID. To get your user ID go to  https://www.spotify.com/  . Go to Profile -> Account  Step 6 : Note down the User ID(User name). #------------------------END OF SPOTIFY CONFIGURATION------------------------------#                                                  PEGA CONFIGURATION Step 1 : Create Authentication profile. Go to Records -> Security -> Authentication profile -> Create new. Step 2 : Create with t...

Common Pega Entry Level Interview Questions

PEGA COMMON INTERVIEW QUESTIONS 1st Set of Questions asked:) 1.Programming language we are good at(C,java,python etc) 2.Relating programming language and pega 3.Real time application solutions 4.Sorting and swapping programs 5.Pega project(explanation in detail) Most of the questions are based on pega CSA concepts.Not direct questions.All are scenario based. 2nd Set of Questions Asked:) 1.Introduce your self. 2.Java concepts. 3.Resume related questions. 4.Scenario based questions in pega. 5.Questions in data transform,declare expression, validation,data pages,routing concepts . 6. Explain about your  journey  in pega?.7.algorithm,code to find palindrome. 8 puzzle and logical questions.   3rd Set of Questions Asked:) 1.Introduce yourself 2.Oops concepts-relate it to pega 3.Scenario based questions in pega 4.Linked list 5.Types of linked list 6. In a simple linked list, how will u fetch the third node from the last? 7. Pointers in C 8.Circular linked list 9.Count ...

Zoom Meet Integration With Pega

Image
          Zoom Meet Creation With Pega Step 1 : Go to Zoom marketplace   https://marketplace.zoom.us/ and sign in to your zoom account Step 2 : Click on build Develop -> build app Step 3 : Click Create OAuth App. Step 4 : Enter your app name and choose the account level app option and disable the intent to publish feature.   Step 5 : You will be redirected to the screen where you will be able to see the client ID and client secret.   Step 6 : Enter your redirect URI , the redirect URI is the URI where the Zoom app will give the access tokens in return. So basically It is our pega application requesting for the tokens, Copy the following and paste it in your Redirect URL For Oauth in the Zoom App. http://localhost:YOURPORTNUMBER/prweb/PRRestService/oauth2/v1/redirect    Step 7 : Also Copy paste the same redirect URL in the Whitelist URL section and click continue.   Step 8 : In the Application Information Page Giv...

How to have a Voice OTP feature in Pega

Image
               Two Factor Authentication Pega (Voice OTP)      Step 1 : We will be using the service from https://2factor.in/v3/?at_category=2factor&at_event_action=spr&service=BULK-SMS-OTP-SERVICE-PROVIDER . Sign up for a free trial if you are just trying it out. Step 2 : Login to your account and go to account summary Step 3 :   Note down your API key which we will need to establish connection Step 4 :  Now go to https://2fa.api-docs.io/v1/send-voice-otp/sending-voice-otp-auto-generated-otp and in the left navigation pane choose either auto generated OTP or custom OTP). Step 5 : In the appropriate choice select try it out and copy the end point URL in my case I use Custom OTP  (  http://2factor.in/API/V1/api_key/VOICE/phone_number/otp ) . Step 6 : Now login to pega and , configure-> integrations -> connectors -> create rest integration.  Step 7 :  Give a source name , choose...