How can I do multipart requests mith Mojo::UserAgent?
问题 I'd like to perform a multipart file upload to Google Drive as described here using a Mojo::UserAgent. I currently do it like this: my $url = Mojo::URL->new('https://www.googleapis.com/upload/drive/v3/files'); $url->query({ fields => 'id,parents', ocr => 'true', ocrLanguage => 'de', uploadType => 'multipart' }); my $tx = $ua->post($url, json => { parents => [ '0ByFk4UawESNUX1Bwak1Ka1lwVE0' ] }, { 'Content-Type' => 'multipart/related', 'parents' => [ '0ByFk4UawESNUX1Bwak1Ka1lwVE0' ] },