I will talk about discord self-bots
As you know users can stream video in calls, is there any self bot library that can stream video just like original discord client? I don't care about the language in which the library is written, I just need it to be able to broadcast video through self-bots to guild voice channels/personal calls
yes, I know that self-bots violate the TOS of the discord
I found a blog post where a developer used webrtc in Node.js to get something working. Sadly cannot use a bot, so you will have to use a user account.
Video streaming bot for Discord
Related
I am trying to implement the integration of google chat in a website. Is there a rest API for fetching and sending messages that can be connected to our google account? Right now we can fetch chats with Gmail API but that's not reliable because the receiver is not shown in the sent messages.
Thanks in advance.
I asked the google support team and here is their reply:
here is the information about Google Chat for developers:
https://developers.google.com/chat There is no option to integrate
Google Chat into a website.
Hope this thread helps you to find the answer sooner that I did.
I am trying to replicate examples from the Google Docs about Creating interactive cards in Google Chat. I have created a sample link in my card.
Sample card with a link "click me"
But once I hit "click me" I have no idea where the request goes and how to steer that it's routed to my publicly available Node.js express route on Google Cloud run.
I must have missed something about the basic bot communication. Can you help me? (Background. I am sending my card via a simple webhook at this point.)
I have found out, that my implementation was not suitable for interactive cards. If someone clicks an interactive card Google Chat will notify the creating bot at its API point specified in the Google Cloud configuration.
So posting the card via WebHook is possible. But there is not communication channel back in this scenario.
I resolved my issue by implementing it with a proper Google Chat bot.
I have been researching for many days on how to send sms using Twilio in React-Native. I haven't found a single example that works! I thought this should be simple but apparently not.
Any suggestions?
Twilio developer evangelist here.
While not ReactNative, I wrote a post about how to send SMS messages in React. The idea for ReactNative will be the same though. You don't want to make requests to the Twilio API directly from your application, you'd need to store your credentials in the app somehow and a malicious user could decompile it and abuse your account.
Instead you want to build a server application that sends the messages and make requests to that from your ReactNative application.
Let me know if that helps at all.
I'm trying to work out how WhatsApp notifications work. First of all, does it use XMPP or FCM messaging? Many online sources say it uses XMPP but the WhatsApp FAQ has hints towards FCM (https://faq.whatsapp.com/en/android/20887936/?category=5245260 at the very bottom of page it says "it is possible that you are not receiving updates from Google's push notification service.")
If WhatsApp does use XMPP, how does it bypass Doze? Because surely WhatsApp needs FCM high-priority to bypass Doze? Does this mean WhatsApp may use a combination of FCM and XMPP?
Many thanks.
I want to implement a speaker queue manager that works off of the chat - see GitHub repo Q Bot for more details - but are unable to find a way to listen to chat events (and then react to them). Any hints?
There's no way to access chat from the Hangouts API.
There is, however, an open feature request for this. If you star the issue you'll be notified when it's updated.
You might be able to work around this by making your own interface in a Hangout extension to control the inputs for this app, rather than overloading the chat feature.