Я могу получить токен доступа и обновить токен, но когда я пытаюсь сделать запрос POST для загрузки файла на Google Drive, я получаю ошибку 401.Я полагаю, что неправильно установил тело своего запроса на загрузку файла (все еще не уверен на 100%, как это сделать), но если бы это было проблемой, я бы ожидал ошибку 400.
У меня естьпробовал инструкции, приведенные здесь https://airbrake.io/blog/http-errors/401-unauthorized-error, такие как очистка кэша браузера и вход / выход из учетной записи.Я также удостоверился, что использую правильный URL, который Google перечисляет в их документации.Мой первый метод отвечает за получение токена доступа.Второй обрабатывает загрузку.
void
googleDriveInterface::getAuthentication() {
google = new QOAuth2AuthorizationCodeFlow;
google->setScope("https://www.googleapis.com/auth/drive");
QObject::connect(google, &QOAuth2AuthorizationCodeFlow::authorizeWithBrowser, &QDesktopServices::openUrl); //this connection opens authorization URL in user's default browser
QJsonDocument credentials = getCredentials("googleDriveCredentials.json"); //json file data is loaded into credentials
//parse JSON
const auto object = credentials.object();
const auto settingsObject = object["installed"].toObject();
const QUrl authUri(settingsObject["auth_uri"].toString());
const auto clientID = settingsObject["client_id"].toString();
const QUrl tokenUri(settingsObject["token_uri"].toString());
const auto clientSecret(settingsObject["client_secret"].toString());
const auto redirectUris = settingsObject["redirect_uris"].toArray();
const QUrl redirectUri(redirectUris[0].toString()); //get first URI
const auto port = static_cast<quint16>(redirectUri.port()); // port needed to for QOAuthHttpServerReplyHandler
google->setAuthorizationUrl(authUri);
google->setClientIdentifier(clientID);
google->setAccessTokenUrl(tokenUri);
google->setClientIdentifierSharedKey(clientSecret);
auto replyHandler = new QOAuthHttpServerReplyHandler(port, this);
google->setReplyHandler(replyHandler);
QObject::connect(google, SIGNAL(granted()), this, SLOT(slotSetAuthToken())); //save token when access is granted
QObject::connect(google, SIGNAL(granted()), this, SLOT(testSlot()));
google->grant(); //start authorization process
}
void
googleDriveInterface::uploadFile(const QString &filePath) {
QUrl uploadURL("https://www.googleapis.com/upload/drive/v3/files?uploadType=resumable");
QNetworkRequest request(uploadURL);
QFile file(filePath);
if (!file.open(QIODevice::ReadOnly)) {
qDebug() << "unable to open: " << filePath << " for upload:" << file.errorString();
return;
}
//get size of file and save as qbytearray for request header
QByteArray fileSize;
fileSize.setNum(file.size());
//get MIME type of file
QMimeDatabase mimeDB; //contains a database of all MIME types
QMimeType mime = mimeDB.mimeTypeForFile(filePath);
QByteArray mimeType = mime.name().toUtf8();
QByteArray test = authToken.toUtf8();
//set headers
request.setRawHeader("Authorization", authToken.toUtf8()); //convert authToken to QByteArray when we set header;
request.setRawHeader("Content-Type", "application/json; charset=UTF-8");
request.setRawHeader("Content-Length", fileSize);
request.setRawHeader("X-Upload-Content-Type", mimeType);
QByteArray fileData = file.readAll();
file.close();
networkReply = networkManager->post(request, fileData);
QObject::connect(networkReply, SIGNAL(metaDataChanged()), this, SLOT(testSlot1()));
}
Я ожидаю получить 200 Status Ok, но, как упоминалось ранее, я получаю ошибку 401 неавторизованным.