Integrating GitLab-CI with SalesForce Chatter - gitlab-ci

How to send pipeline build notification to SalesForce Chatter from GitLab-CI?

Related

How Do I Write CloudFormation Tests For AWS Amplify To Ensure Resources Are Built Correctly?

I am looking to build a suite of tests that can be integrated into the CI/CD Pipeline for AWS Amplify. Whilst I have established my front-end testing suite, Cypress, I am trying to determine a suitable path for backend testing.
I've tested the CDK before with Template, and believe I can add a custom resource into AWS Amplify that can import the CloudFormation stacks and then test them.
Where I expect to have the tests:
Example Test Cases:
My Cognito User Pool uses SES to send emails
My Cognito User Pool has a Post Confirmation Trigger
My Lambda has the correct permissions
What is the best practise for testing backend resources for AWS Amplify? Is there already an "approved" method?

Salesforce for Slack app (problem with standard notifications)

We have a production org on which the slack package is installed. Salesforce app installed in Slack (I don't know if it matters or not, but this app has a custom name). Connection between Salesforce and Slack has been configured.
When the task is assigned for a user, the user receives a notification in messages from Salesforce app in the slack. it works for a while, and then the notifications stop coming. We need to reauthorize the connection for salesforce and slack in slack setup menu on the production org to make it work again.
What could be the reason?

Linking payment api for hosting

Is there any api which gives transaction data to authenticate the payment through qr code of upi
Note: paytm, google and other api give test api keys but for production api registration is important
I don't need payment gateway I just need transaction id and amount to verify payment in my mern stack web application
I am looking for source code of free apis for my web application using react express node js and mongodb

FCM get registration token via robot framework

I want to get generated registration token which generated by a client such as (Web JS, Android/IOS App...) via robot todo automation testing
I'm thinking to use mountebank to add JS SDK but not simple because related to grant notification permission issue (It's required to able to generate registration token)
Anybody have an idea to get that token via robot please share
Thanks in advance!!!
What is FCM?
Firebase Cloud Messaging (FCM) is a cross-platform messaging solution that lets you reliably send messages at no cost.
Using FCM, you can notify a client app that new email or other data is available to sync. You can send notification messages to drive user re-engagement and retention. For use cases such as instant messaging, a message can transfer a payload of up to 4KB to a client app.
Using deprecated Google Cloud Messaging APIs? Learn more about how to migrate to FCM.
https://firebase.google.com/docs/cloud-messaging

Registration Azure Notification Hub in WebApi backend from Android client

We are using Asp.Net WEBAPI 2.2 with OWIN middleware for authentication. We try to integrate Azure Notification Hub for our platform. However, we could not find a best way for registrating our Android client to Azure Notification Hub through our WEBAPI backend.
Should we call another registration method after Token endpoint returns access token?,
What should we do with the registration id that notification hub returns?,
Instead of generating registration id, couldn't we use userid for our authenticated push notifications?,
and finally, is there any tutorial tells explicitly how can we authenticated push notifications from WEBAPI to Android, because official tutorials are not enough
After you get the GCM RegistrationId/Token/Handle, you need to register at your Azure Notification Hub with it and you will get an Azure Notification Hub RegistrationId that is different from the GCM RegistrationId.
Your app needs to store that ANH RegistrationId to update its registration on each app start, your backend doesn't necessarily need the ID.
You can add the User ID as a tag to the registration to identify the registrations using the User ID, see the following linked tutorial.
This official tutorial is exactly what you need: Azure Notification Hubs Notify Users - Android, WebAPI.