Bug P3
Status Update
Comments
ch...@google.com <ch...@google.com> #2
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
Android build
Which Android build are you using? (e.g. OPP1.170223.012)
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Expected output
What is the expected output?
Current output
What is the current output?
Android bug report capturing
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method
After reproducing the issue, navigate to “developer settings”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Screen record of the issue, for clarity
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
Android build
Which Android build are you using? (e.g. OPP1.170223.012)
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Expected output
What is the expected output?
Current output
What is the current output?
Android bug report capturing
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method
After reproducing the issue, navigate to “developer settings”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Screen record of the issue, for clarity
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
Description
Description
Facing issue while hitting received resumable URI.
Detailed description
Hi Team,
I am using Google Photos API in my Angular Project and now requirement arise for resumable API for Big Files. I am able to hit succesfully 1st API that ishttps://photoslibrary.googleapis.com/v1/uploads and upload url is coming.
But when ever i hit url that i received as header response getting status 400 with message Missing X-Goog-Upload-Offset header. even i added this in my request header.
Function for your reference.
uploadResumableMedia(localfile, startVal,url){ console.log(localfile); return this.http.post(url,localfile.uploadedImage, { headers: { 'Content-type':'application/octet-stream', 'Content-Length': localfile.fileDetail.size, 'X-Goog-Upload-Offset':startVal, 'X-Goog-Upload-Command':'upload, finalize',
}
Please help asap.