Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gmail api scope & format mismatch

I'm trying to write tiny gmail client for android as training. I took gmail api guide sample from https://developers.google.com/gmail/api/quickstart/android modified it a little to get messages with headers & body by threads. I set scopes to GmailScopes.Gmail_modify and edited main request function as this:

private List<String> getDataFromApi() throws IOException {
            // Get the labels in the user's account.
            String user = "me";
            List<String> labels = new ArrayList<String>();
            ListLabelsResponse listResponse =
                    mService.users().labels().list(user).execute();
            ListThreadsResponse listThreads = null;
            try {
             listThreads = mService.users().threads().list(user).execute();
            } catch (IOException ioex){
                Log.e(LOG_TAG, "First: " + ioex.toString());
            }

            for (Thread thread : listThreads.getThreads()) {
                try {
                    thread = mService.users().threads().get(user, thread.getId()).setFormat("full").execute();
                } catch (IOException ioex){
                    Log.e(LOG_TAG, "Second: " + ioex.toString());
                }
                for(Message message : thread.getMessages()){
                    labels.add(message.getId());
                }

            }
            return labels;
        }

But I always get

Second: GoogleJsonResponseException: 403 Forbidden            {
                                                                             "code" : 403,
                                                                             "errors" : [ {
                                                                               "domain" : "global",
                                                                               "message" : "Metadata scope doesn't allow format FULL",
                                                                               "reason" : "forbidden"
                                                                             } ],
                                                                             "message" : "Metadata scope doesn't allow format FULL"
                                                                           }

I tried different scopes configurations but seems like service scope is always set to GmailScopes.GMAIL_METADATA

like image 423
Green Avatar asked Nov 12 '16 18:11

Green


2 Answers

This is exactly my problem these day when playing with Google APIs Explorer. And here is what I did to solve it:

  1. Go to https://security.google.com/settings/security/permissions
  2. Choose the app you are playing with, mine is Google APIs Explorer
  3. Click Remove > OK
  4. Next time, just request exactly which permissions you need.

Hope it help :)

like image 77
Nhan Avatar answered Oct 15 '22 04:10

Nhan


you should remove the "metadata" scope.

check app permissions to make sure you have only these 3 scopes:

  1. https://mail.google.com/
  2. gmail.modify
  3. readonly , or else remove the permissions and add them again.
like image 34
Mayank Beri Avatar answered Oct 15 '22 04:10

Mayank Beri