<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DUO Auth API with Java in APIs</title>
    <link>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883710#M526</link>
    <description>&lt;DIV class="duo-migrated-content"&gt;&lt;P&gt;Thank you for your response. This means I could send a push/sms  with in  single request  from the server side like java web service to the user phone without displaying the DUO authentication prompt with options.&lt;/P&gt;
&lt;P&gt;Appreciate, if DUO comes up with a sample java for users who extensively use java. Any examples with javascript or jquery will also help. We see examples in php.&lt;BR /&gt;
Thanks.&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 19 Jul 2019 22:02:23 GMT</pubDate>
    <dc:creator>officeforumsid</dc:creator>
    <dc:date>2019-07-19T22:02:23Z</dc:date>
    <item>
      <title>DUO Auth API with Java</title>
      <link>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883707#M523</link>
      <description>&lt;DIV class="duo-migrated-content"&gt;&lt;P&gt;Is it possible to send passcode / push notification to registered users phone using DUO auth API in java without a user interface? I tried the sample DUOServlet program and when the servlet is invoked with a request, it returned HTML with multiple choices for the user to choose from like Send push notification/Call/Send pass code. When the user clicks on send passcode or push notification button, the request is posted to the servlet and a notification is sent to the user’s phone. So my question is:&lt;BR /&gt;
is it possible to send push notification/Passcode to the user phone without displaying the DUO Authentication frame in the UI and asking the user to click on the button?&lt;/P&gt;
&lt;P&gt;I don’t want to show this duo frame. Instead i directly want to send push or passcode notification to the phone.&lt;/P&gt;
&lt;P&gt;I tried the sample java code from&lt;BR /&gt;
&lt;A href="https://github.com/duosecurity/duo_client_java" rel="nofollow noopener"&gt;Github&lt;/A&gt; to call the Duo API methods.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="2X_1_11ec78603fb3734a9ca1a8c605aeb540c34e6035.png" style="width: 659px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/190884i28E473B30414D5AE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2X_1_11ec78603fb3734a9ca1a8c605aeb540c34e6035.png" alt="2X_1_11ec78603fb3734a9ca1a8c605aeb540c34e6035.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Jul 2019 23:06:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883707#M523</guid>
      <dc:creator>officeforumsid</dc:creator>
      <dc:date>2019-07-17T23:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: DUO Auth API with Java</title>
      <link>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883708#M524</link>
      <description>&lt;DIV class="duo-migrated-content"&gt;&lt;P&gt;Any update on this? Can you please share any sample code if any.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 18 Jul 2019 16:22:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883708#M524</guid>
      <dc:creator>officeforumsid</dc:creator>
      <dc:date>2019-07-18T16:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: DUO Auth API with Java</title>
      <link>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883709#M525</link>
      <description>&lt;DIV class="duo-migrated-content"&gt;&lt;P&gt;To add Duo authentication with your own UI instead of showing the Duo WebSDK prompt it is correct that you’d use the &lt;A href="https://duo.com/docs/authapi" rel="nofollow noopener"&gt;AuthAPI&lt;/A&gt; and &lt;A href="https://github.com/duosecurity/duo_client_java" rel="nofollow noopener"&gt;duo_client_java&lt;/A&gt;. You could use &lt;A href="https://duo.com/docs/authapi#/preauth" rel="nofollow noopener"&gt;/preauth&lt;/A&gt; to enumerate a user’s enrolled factors, followed by &lt;A href="https://duo.com/docs/authapi#/auth" rel="nofollow noopener"&gt;/auth&lt;/A&gt; to send a push or to call the phone returned by /preauth.&lt;/P&gt;
&lt;P&gt;Sorry, but we do not have a Java example of this.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Jul 2019 21:10:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883709#M525</guid>
      <dc:creator>DuoKristina</dc:creator>
      <dc:date>2019-07-19T21:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: DUO Auth API with Java</title>
      <link>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883710#M526</link>
      <description>&lt;DIV class="duo-migrated-content"&gt;&lt;P&gt;Thank you for your response. This means I could send a push/sms  with in  single request  from the server side like java web service to the user phone without displaying the DUO authentication prompt with options.&lt;/P&gt;
&lt;P&gt;Appreciate, if DUO comes up with a sample java for users who extensively use java. Any examples with javascript or jquery will also help. We see examples in php.&lt;BR /&gt;
Thanks.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Jul 2019 22:02:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/apis/duo-auth-api-with-java/m-p/4883710#M526</guid>
      <dc:creator>officeforumsid</dc:creator>
      <dc:date>2019-07-19T22:02:23Z</dc:date>
    </item>
  </channel>
</rss>

