(React Native) How to share a message to a particular person on LinkedIn - reactjs

I'm working on a react-native app in which I need to share a message with a particular person/friend/connection on LinkedIn.
I tried react-native's Share component but when I select the LinkedIn app to share my message, it just post the message to my profile wall (and not sending it to a particular connection).
Other apps like Facebook Messenger for example, when I select Share with Messenger it allows me to send the share message to the user(s) I select.

For me you have 3 possibilities:
To find the right Linkedin App callback url (ex: linkedin://profile?id=[id]), my answer on this question should help you.
To look if using the react-native-share dependency can help you.
To implement and use a Native Module with the Linkedin SDK.

Related

React and MSGraph - send email

I'm having a hard time understanding how to send an email in react using msgraph. I have authentication working through MSal and can show the user profile. I have read the documentation and it feels like I'm missing many steps. Does anyone know of a sample project that authenticates and sends a test email? Ultimately I would like to create a reusable function that takes in the TO, Subject, Body.
Thank you for reaching out.
Refer to the module here.
This module will introduce you to working with the Microsoft Graph in creating a React single-page application to access data in Office 365.
Thanks.

Agora.io issue in Reactjs and React Native

I have the next problem, I have a Mobile app that will be using for the users. A web app that will be using for the admin. I already develop both apps but I have a problem, I don't have a way to know who user is connected.
Both app are working with Firebase, users and admin are in the same Channel but I don't found a way to know which user is online.
React Native: https://github.com/syanbo/react-native-agora#readme
Reactjs: https://github.com/jjrajani/react-agora.io
Please, help me. Thanks. I want a way to assign an unique ID to each user (mobile app) and get those ID inside of web app.
PD:
The users will have the camera opened everytime and they can't listen or watch the others members (including admin). Just the admin can watch and listen to everybody but the admin needs to have a way to know which user is connected.
You need to assign unique uids to each user inside the join channel method both Web and React Native
You will receive this uid on the receiver's side while listening to "stream-added" event on the web and "userJoined" event on the React Native

Messenger customer chat plugin - referral webhook event not received on mobile

I've been using the Messenger customer chat plugin quite often but I recently discovered that I don't receive any 'ref' tags when a mobile user tries to talk to me through the Messenger chat plugin. It does work perfectly whenever someone starts talking on desktop (Chrome, Safari,...)
Is this a known issue and are there any workarounds? I now have no clue where this user came from since I don't receive the referral webhook.
Thanks in advance!

Sending USSD codes in React native

I'm trying to create an app with React Native to sending some USSD codes and Manage SMSs.
actually, I need to do two operations in my app:
USSD
SMS
I Googled it but there are not many resources about this topic, so If someone knows how to do it, I'll appreciate a lot your help, Thanks!
Firebase has a PhoneAuth module, which will send a verification code to the device via SMS.
You can find more info here : https://github.com/invertase/react-native-firebase-docs/blob/master/docs/auth/phone-auth.md
Also keep in mind that you have to add the Native Firebase module for React Native and not the web based one as it does not support Phone authentication.
This can be done using react-native-ussd library, for dialing and receiving USSD responses.
But currently only Android is supported.

bot framework facebook multiple pages

llhi,
I have configured Facebook connection thru Bot Framework, which has requested to configure one single Facebook page, app, and then token. Is it possible to indicate how to manage several Facebook pages thru the same Microsoft Bot Framework? If not possible, what are the available options?
Thx for your feedback,
Regards
If I understand your question correctly, you would like a bot that works across several Facebook pages? Do to this you'll need to create multiple registrations in the BotFramework for your bot (one for each Facebook page). Each registration can call back to the same bot (just use the same webhook).
A bot can configure on multiple fanpages. I tested it, just enter new pageId and PageToken then resubmit. It still work well.
The problem is the UI configure BotFramework not display all fanpages that authorized. When click deauthorized, it delete all pages. We can wait dev team upgrade it or create multiple registrations like Lars said . I think it will work better soon.

Resources