Select Folder with google Picker
I'm using google the plugin Picker for Google Drive. My idea is select only the folders and get its ID. Currently not let me select them,now only enter into that directory. I am using this code: function MenuCtrl($scope, $location, appId) { var onFilePicked = function (data) { $scope.$apply(function () { if (data.action == 'picked') { var id = data.docs[0].id; $location.path('/edit/' + id); } }); }; $scope.open = function () { var view = new google.picker.View(google.picker.ViewId.FOLDERS); view.setMimeTypes('application/vnd.google-apps.folder'); var picker = new google.picker.PickerBuilder()