We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OAuth Token can only be used once
rivate void getCloverAuth() { new AsyncTask<Void, Void, CloverAuth.AuthResult>() { @Override protected CloverAuth.AuthResult doInBackground(Void... params) { try { Context context = getApplicationContext(); return CloverAuth.authenticate(context); } catch (Exception e) { Log.e(TAG, "Error authenticating", e); } return null; } @Override protected void onPostExecute(CloverAuth.AuthResult result) { cloverAuth = result; if (cloverAuth != null && cloverAuth.authToken !=null) { mToken.setText("Token: " + cloverAuth.authToken); } else { mToken.setText("Error retrieving token.")); } } }.execute(); } }
Token received for this method will only change if we reinstall the app.
How can we verify that device authentification through clover ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OAuth Token can only be used once
Token received for this method will only change if we reinstall the app.
How can we verify that device authentification through clover ?
The text was updated successfully, but these errors were encountered: