I am trying to get into the handset using the following code
mService = new YouTubeService("Nothing", developer_key); //Authentication try { mService.setUserCredentials(mUsername, mPassword); } catch (AuthenticationException e) { Log.v(TAG, e.toString()); }
but I get:
ConnectYouTube: com.google.gdata.util.AuthenticationException: Error connecting with login URI
This code seems to me basic, and I canβt understand what mistake I am making here.
source share