Like video with access token on YouTube using YouTube Data API v3?
I want to like video of YouTube. I have acquired AUTH_TOKEN using AccountManager using the following am.getAuthToken(mAccount, AUTH_TOKEN_TYPE, null, this, new AccountManagerCallback<Bundle>() { public void run(AccountManagerFuture<Bundle> future) { try { if(future != null && future.getResult() != null) { if(future.getResult().containsKey(AccountManager.KEY_AUTHTOKEN)) { AUTH_TOKEN = future.getResult().getString(AccountManager.KEY_AUTHTOKEN); } } } catch(OperationCanceledException e) { } catch(AuthenticatorException e) { } catch(IOException e) { } catch(Exception e) { } } }, null); Now i want