How Can I Send Bulk Email by using Mailchimp with Oracle Apex? - oracle-apex

I'm looking to integrate mailchimp with my Oracle Apex app. Although I'm not sure how to do it, any ideas? There is not much documentation about that. Thanks in advance.

Mailchimp has a number of API's to integrate with (https://mailchimp.com/developer). From within pl/sql you can invoke rest requests using the apex_web_service.make_rest_request api. There will be some config challences (ACL in the database, the oracle wallet for https connections) but once you've got those sorted this should be possible.

Related

How to use FCM pkg on Django?

I'm using the fcm_django package to send notifications API to Firebase but I have some confusion about those two concepts on Firebase like so: (registeration_id and device_id)
https://fcm-django.readthedocs.io/en/latest/#setup
I placed the "server_key" of Firebase to registration_id but don't understand what does device_id means and what is the value I should put on it?
after answering the above questions I tried to send notification from Django by the admin page on Django by creating registration_id which is "server_key" and defining the type which is a "web", but when I created this object I didn't see any message has been sent to Firebase cloud.
Note:-
I want to send notifications to only one device not many users.
so, can anyone help me to achieve this mission succeeded?
Thanks in advance
The device_id is a token that is generated by the Firebase SDK on each device/app combination that wants to receive messages from FCM.
To learn how to access this token, have a look at the documentation for Android, Web and iOS.
Once you have the token on the specific client, you will need to send it to a place where the fcm-django package can then also access it; typically a cloud hosted database, such as the Realtime Database or Firestore that are also part of Firebase.
From there your Django can then get the token, and pass it to the fcm-django API.

Stripe integration with Django rest and Angular/Cli

I want to create a stripe payment integration using Django Rest Framework as backend and Angular/Cli as frontend. And also I want to confirm the payment using stripe webhooks. I could not able to find Angular documentation just for the only frontend. And also the Stripe docs are generally has written for flask and not for the rest framework. Any help will be appreciated. Thank you in advance.
I've found a library and some newer docs that I think will solve your issues: https://richnologies.gitbook.io/ngx-stripe/core-concepts/checkout
Using the ngx-stripe library as a wrapper, you can setup the publishable key on your front end. The library then offers a StripeService.
If you setup some custom endpoints on your backend to handle the dirty work (accept payments, create customers, etc), you can have then have the StripeService listen for the response and react accordingly (create a checkout session, display payment successful message, etc.)

Firebase for Push Notifications only

I want to develop a web application with a database using Django/Grails/Express
I want to use Firebase just for sending Push Notifications to an Iphone. Do i need develop the webapplication (including the database) in firebase or can i develop the web application using Django/Grails/Express and use Firebase just for sending Push Notifications?
Do all web frameworks (Django/Grails/Express) support Firebase? Will Firebase be free to use in my case?
EDIT: How to i use Firebase with Django/Grails/Express? Is there an API or library i need to download?
Thank you in advance!
You can pick and choose which Firebase products you wish to use in your app. You may use as many or as few as you want. There is no obligation to use anything that you don't want to use. There is no charge for using Firebase Cloud Messaging in your app.
In this url https://cloud.google.com/community/tutorials/grails3-send-push-notification-using-firebase-cloud-messaging you can read about the process for sending push notifications using grails as backend

Did Yahoo recently discontinue one of their geo web services?

I was using a Yahoo web service to resolve zip codes to geo information. An example url is
http://where.yahooapis.com/geocode?q=35060,mx
where 35060 is the area code and mx is the country.
I am now receiving 404s when I do this. Did this service change? I see now that yahoo offers GeoPlanet which requires an application id as well.
Although there doesn't appear to be an official announcement from Yahoo, there have been consistent reports about this service no longer working.
As an "official" alternative, consider Yahoo Placefinder, which requires an app ID and 2-legged OAuth authentication: http://developer.yahoo.com/boss/geo/docs/requests-pf.html
Alternately, you may be able to use YQL to retrieve the information you need without requiring authentication:
http://query.yahooapis.com/v1/public/yql?q=select%20%2a%20from%20geo.placefinder%20where%20postal=%2236050%22%20and%20country=%22mexico%22&diagnostics=true

How can I integrate Google Documents List Data API with coldfusion page?

Can someone please tell me the step that I should take to integrate google docs in .cfm page. It is a multi-user web application with single log-in , one username n password.
Thanks.
Try this free library at: http://cfgoogle.riaforge.org/ , read this post: http://www.coldfusionjedi.com/index.cfm/2007/12/8/Google-Docs-CFC
If you want to do it yourself without using the library above, you will need to learn how to consume RESTful services using the <cfhttp> tag, and construct and parse XML using <cfxml> and xmlParse().
This Yahoo guide introduces how to use CF to consume Yahoo's RESTful services: http://developer.yahoo.com/coldfusion/index.html