What steps will reproduce the problem?
1. Creating a service ticket for uploading a file with the query
GTLQueryYouTube *query = [GTLQueryYouTube queryForVideosInsertWithObject:video
part:@"snippet,status"
uploadParameters:uploadParameters];
The query is fine, unchanged, and has only stopped working since i implemented G+ sign in.
2. Attempting to execute the query using
_uploadFileTicket = [service executeQuery:query
completionHandler:^(GTLServiceTicket *ticket,
GTLYouTubeVideo *uploadedVideo,
NSError *error) {
// Callback
NSLog(@"Here!");
//More stuff including error handling
3.
What is the expected output? What do you see instead? Expected at least 'Here'
to log, and any errors to be handled following the unsuccessful upload. Instead
nothing appears, the query just doesnt execute.
What version of the product are you using? On what operating system?
Latest svn on 10.8.4 xCode 5.
Please provide any additional information below.
How would i go about tracing where this ticket gets stuck? I just cant follow
it at all. Im so confused. Any help on how to start fresh and re-do this all
would be great.
No compiler errors/warnings associated.
Original issue reported on code.google.com by
michael....@trickbook.comon 20 Sep 2013 at 9:05