How to Integrate Telegram with Oracle Apex 1) create Telegram Account in your Mobile like whatsapp 2) Ones you register in telegram apps serach for BotFather 3) To Create New Bot u need to enter below command /newbot Alright, a new bot. How are we going to call it? Please choose a name for your bot. Macsbot Good. Now let's choose a username for your bot. It must end in `bot`. Like this, for example: TetrisBot or tetris_bot. MacsOmanBot Done! Congratulations on your new bot. You will find it at t.me/MacsOmanBot. You can now add a description, about section and profile picture for your bot, see /help for a list of commands. By the way, when you've finished creating your cool bot, ping our Bot Support if you want a better username for it. Just make sure the bot is fully operational before you do this. Use this token to access the HTTP API:<Here you will prompt with your api> 4) /mybots (this command will return the list of bots which you have created) ...
1) Get API URL From Register WhatsApp API Provider 2) In my case https://app.chat-api.com/ 3) Login with your account or register for new account 4) Add new Instance 5) Give Instance Name and Reboot 6) Open your WhatsApp in mobile --> Go to Setting --> WhatsApp Web/Desktop and Scan QR code for Activate your business account with instance 7) Copy Your API 8) Go to Oracle APEX , go to sql Workshop and create procedure to call the API 8 ) Call the procedure Mobile No = Should Start with Country Code begin whatsapp_send ( l_mobileno => '968XXXXX', l_message => 'Hello' ...
1. Create a new Apex application and add a page to it. 2. Create a form on the page with input fields for the customer's credit card information, such as 3. the card number, expiration date, and CVV code. 4. Include a button on the form to submit the payment information. 5. On the button's click event, use JavaScript to send the payment information to the Stripe API for processing. $(document).ready(function() { var stripe = Stripe('pk_test_YOUR_PUBLISHABLE_KEY'); $('#submit-button').click(function() { var cardNumber = $('#card-number').val(); var cardExpiry = $('#card-expiry').val(); var cardCvc = $('#card-cvc').val(); stripe.createToken(cardNumber, cardExpiry, cardCvc, function(status, response) { if (status === 200) { var token = response...
Comments
Post a Comment