I have a google app script application, which have doGet and doPost methods. Previously when user was logged in from multiple google accounts or if user does not had permission to that particular google-doc document it used to return auth error, but now it is returning just an empty string instead of proper response due to which i am unable to indentify type of error which occured.
i am using jquery .get method to send get request to Google-App-Script
Jquery.get( scriptUrl ).done( function( data ){
console.log(data); //emtpy String
} );
Can any one please help in resolving this issue?
Thanks alot