Questions tagged [google-duo]

9 questions
9
votes
2 answers

what intents or apis does Google's Duo app for Android support?

Can we start a new video call via Google Duo via intent? Can we launch into any specific screen within the app? We currently have support for launching Hangouts from our app, and we would like to add Duo support as well.
marmor
  • 27,641
  • 11
  • 107
  • 150
8
votes
3 answers

Start video call in Hangouts or Duo using intent?

I am looking for a way to start a video call in either Hangouts or Duo. There seems to be 0 documentation regarding what intents should be used. Does anyone have an idea?
Konstantin Milyutin
  • 11,946
  • 11
  • 59
  • 85
2
votes
1 answer

No apps can handle this action Google Duo

I am trying to start video/audio call using Google Duo from my app by clicking a certain button. I can successfully start audio/video call on WhatsApp but not on Google Duo. long id= 133; Intent intent = new Intent(); …
Waheed Abbas
  • 187
  • 1
  • 4
  • 18
1
vote
0 answers

Can we make google duo video call using email on button click?

I'm setting up an app that can make a video call. But, we're in hurry. so we just want intent to google duo. I've been search how to make video call using google duo. But, we don't want to save user's phone number in our app. Here's what I've found…
1
vote
0 answers

Make Google Duo audio/ video call on button click

I can successfully open Google DUO but I want to initialize audio/video call on selecting a particular contact. Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.google.android.apps.tachyon"); …
Waheed Abbas
  • 187
  • 1
  • 4
  • 18
1
vote
1 answer

android, Can I forward phone number data to google duo?

Intent intent = getPackageManager().getLaunchIntentForPackage("com.google.android.apps.tachyon"); intent.setData(Uri.parse("tel:" + "phonenumber")); startActivity(intent); I could not pass the data to 'Google duo' app in the same way Is there a…
HUJIN SHIN
  • 63
  • 6
0
votes
0 answers

I want to create a user on Duo Admin API but I don't know that I am doing wrong. Can anyone guide me?

I am trying to solve this problem but I don't know what am I doing wrong? Here is the documentation https://duo.com/docs/adminapi#create-user import java.io.*; import java.net.URL; import java.net.HttpURLConnection; public class duo { …
0
votes
0 answers

Creating a user using the Duo Security Admin API

Following the documentation for the Duo Security Admin API, I am trying to create/delete a user. The documentation only indicates that a post command needs to be used. No examples are given and I’m not sure where to start. I am trying to create a…
0
votes
1 answer

Why do Google Authenticator and Duo produce different authentication codes?

I'm using the following library to implement two-factor authentication: https://github.com/speakeasyjs/speakeasy The library produces the following QR Code: When I scan the code in Google Authenticator and Duo, both apps produce different…
Mary
  • 1,005
  • 2
  • 18
  • 37