otp verification in spring boot

//Your authentication key

	String authkey = "YourAuthKey";

	//Mobile number to which OTP needs to be sent
	String mobiles = "+91XXXXXXXXXX";

	//Your otp value to be sent.
	String otpValue = "12345";

	URLConnection myURLConnection=null;
	URL myURL=null;
	BufferedReader reader=null;

	//encoding message
	//Send SMS API
	String mainUrl="https://2factor.in/API/V1/"+authkey+"/SMS/"+mobiles+"/"+otpValue;

	//Prepare parameter string
	StringBuilder sbPostData= new StringBuilder(mainUrl);
	sbPostData.append("1=1");
	//final string
	mainUrl = sbPostData.toString();
	try
	{
	    //prepare connection
	    myURL = new URL(mainUrl);
	    myURLConnection = myURL.openConnection();
	    myURLConnection.connect();
	    reader= new BufferedReader(new InputStreamReader(myURLConnection.getInputStream()));

	    //reading response
	    String response;
	    while ((response = reader.readLine()) != null)
	    //print response
	    Log.d("RESPONSE", ""+response);

	    //finally close connection
	    reader.close();
	}
	catch (IOException e)
	{
	e.printStackTrace();

	}

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source