We use proprietary and third party´s cookies to improve your experience and our services, identifying your Internet Browsing preferences on our website; develop analytic activities and display advertising based on your preferences. If you keep browsing, you accept its use. You can get more information on our Cookie Policy
Cookies Policy
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

KeyRock Issue

We are developing an Android application and want to authenticate our users based on the keyrock instance from the Fiwarelab (temporarily before installing our own Keyrock instance on our server). So we have imagined this being exactly like google or facebook sign in. We want to use the public and private keys provided while registering the app. The method (out the only two available) we have chosen is "Resource Owner Password Credentials Grant."

In our test authentication method we only created a simple code to check for username and pass. But we wish to use the esource Owner Password Credentials Grant that keyrock allows to use.

public void enter(View view){ onButtonClicked.start(); // if(cultureName == "Select culture") // { // Toast.makeText(this, "Please select culture!",Toast.LENGTHSHORT).show(); // } // else if(cultureName == null) // { // Toast.makeText(this, "Please check your internet connection!",Toast.LENGTHSHORT).show(); // } // else EditText user = (EditText)findViewById(R.id.editText1); username = user.getText().toString(); EditText pass = (EditText)findViewById(R.id.editText2); password = pass.getText().toString();

//if(username.equals("ad") && password.equals("ad")) {

  Intent intent = new Intent(this,MainActivity.class);
  startActivity(intent);
  IntroActivity.this.finish();

} //else { //Toast.makeText(getApplicationContext(),"Username or password are incorrect! Please try again!", Toast.LENGTH_LONG).show(); }

}