ios - 如何在单个 OneNote 页面上传多张图片?

标签 ios objective-c onedrive onenote

我正在使用我的 iOS 应用程序中的 OneDrive iOS SDK 创建 OneNote 页面。这是我为多张图片发布请求所做的代码。

NSMutableArray *selecedFileNames = [[NSMutableArray alloc] init];
NSString *date = [self formatDate];
NSString *start = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"utf-8\" ?>\r\n"
                   "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-us\">\r\n"
                   "<head>\r\n"
                   "<title>Created By</title>\r\n"
                   "<meta name=\"created\" content=\"%@\" />\r\n"
                   "</head>\r\n"
                   "<body>\r\n"
                   "<p>This is <b>Photo</b> <i>Created</i> note.</p>\r\n",date];

for (int i = 0; i<self.selectedImages.count; i++) {

    self.imgObject = (ImageObjects *)[self.selectedImages objectAtIndex:i];

    FileModel *fileModel = [FileModel new];
    fileModel.fileData = self.imgObject.image_data;
    fileModel.fileName =  self.imgObject.imageName;
    fileModel.fileType = FileTypeImage;

    self.filePath = fileModel.getFileName;

    NSString *trimmedString = [self.filePath  stringByReplacingOccurrencesOfString:@" " withString:[NSString stringWithFormat:@"%d",i]];
    self.filePath = [trimmedString  stringByReplacingOccurrencesOfString:@":" withString:@""];

    NSString *middle = [NSString stringWithFormat:@"<img src=\"%@\" alt=\"image\" width=\"500\">\r\n",self.filePath];

    [selecedFileNames addObject:self.filePath];
    start = [start stringByAppendingString:middle];

}

start = [start stringByAppendingString:@"</body>\r\n"
         "</html>\r\n"];

NSString *boundary = [self generateBoundaryString];

NSString *pagesEndpoint = [NSString stringWithFormat:@"sections/%@/pages", selectedSectionId];
NSString *fullEndpoint = [serviceRootUrl stringByAppendingString:pagesEndpoint];

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;
[request setURL:[NSURL URLWithString:fullEndpoint]];
[request setHTTPMethod:@"POST"];

// set content type
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", boundary];
[request setValue:contentType forHTTPHeaderField: @"Content-Type"];

NSMutableData *body = [NSMutableData data];


[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"Presentation\"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[@"Content-Type:application/xhtml+xml\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"%@\r\n", start] dataUsingEncoding:NSUTF8StringEncoding]];

for (int i=0; i< self.selectedImages.count; i++) {

    self.imgObject = (ImageObjects *)[self.selectedImages objectAtIndex:i];

    FileModel *fileModel = [FileModel new];
    fileModel.fileData = self.imgObject.image_data;
    fileModel.fileName =  self.imgObject.imageName;
    fileModel.fileType = FileTypeImage;

    [body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
    [body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\" \r\n",[selecedFileNames objectAtIndex:i]] dataUsingEncoding:NSUTF8StringEncoding]];
    [body appendData:[@"Content-Type: image/jpeg\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
    [body appendData:[@"\r\n--" dataUsingEncoding:NSUTF8StringEncoding]];
    [body appendData:[NSData dataWithData:fileModel.fileData]];
    [body appendData:[@"--\r\n" dataUsingEncoding:NSUTF8StringEncoding]];

}

[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n.", boundary] dataUsingEncoding:NSUTF8StringEncoding]];


NSString *finalBody =[[NSString alloc] initWithData:body encoding:NSASCIIStringEncoding];

// set request body
[request setHTTPBody:body];

if (self.client)
{
    // Send the HTTP request.
    [self sendRequest:request];
}

我可以在 OneNote 中成功创建带有图像的页面,但我无法在页面上看到图像。请帮我解决这个问题。无法找出请求中的问题所在。我创建的请求有什么问题吗?

最佳答案

如果您收到“413”响应代码,则表示您超出了发送给 API 的请求的大小。这取决于您要发送的图像的总大小,而不是图像的数量。

请注意,通过 Base64 字符串发送图像会导致其大小增加 33%(这就是示例所做的)。您可以通过发送多部分请求来避免这 33% 的命中率。此外,您可以使用 JPEG 等文件格式显着减小图像大小(看起来您使用的是 PNG,因此您可能仍需要采取额外步骤来减小图像大小)。

我们的 iOS 示例在函数 createPageWithImage 中正是这样做的

NSString *attachmentPartName = @"pngattachment1";
NSString *date = dateInISO8601Format();
UIImage *logo = [UIImage imageNamed:@"Logo"];

NSString *simpleHtml = [NSString stringWithFormat:
                        @"<html>"
                        "<head>"
                        "<title>A simple page with an image from iOS</title>"
                        "<meta name=\"created\" content=\"%@\" />"
                        "</head>"
                        "<body>"
                        "<h1>This is a page with an image on it</h1>"
                        "<img src=\"name:%@\" alt=\"A beautiful logo\" width=\"%.0f\" height=\"%.0f\" />"
                        "</body>"
                        "</html>", date, attachmentPartName, [logo size].width, [logo size].height];

NSData *presentation = [simpleHtml dataUsingEncoding:NSUTF8StringEncoding];
NSData *image1 = UIImageJPEGRepresentation(logo, 1.0);
NSString *endpointToRequest = [ONSCPSCreateExamples getPagesEndpointUrlWithSectionName:sectionName];
NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:endpointToRequest parameters:nil constructingBodyWithBlock: ^(id <AFMultipartFormData>formData) {
    [formData
     appendPartWithHeaders:@{
                             @"Content-Disposition" : @"form-data; name=\"Presentation\"",
                             @"Content-Type" : @"text/html"}
     body:presentation];
    [formData
     appendPartWithHeaders:@{
                             @"Content-Disposition" : [NSString stringWithFormat:@"form-data; name=\"%@\"", attachmentPartName],
                             @"Content-Type" : @"image/jpeg"}
     body:image1];
}];

如果您有这些 header :

Content-Type: multipart/form-data; boundary=0FA204EB-20EA-4E56-99EC-5EF56D600E02

还有这个 body ,它应该可以工作。

--0FA204EB-20EA-4E56-99EC-5EF56D600E02
Content-Disposition: form-data; name="Presentation"
Content-Type: text/html
<!DOCTYPE html>
<html><head><title>Created By Photo</title>
<meta name="created" content="2017-02-01T11:34:11+05:30" /></head><body><p>This is some <b>Photo</b> <i>Created</i> note.</p></body><h1>This is a note with image.</h1>
<img src="name:2017-02-01060411+0000.JPG" alt="image" ></body></html>
--0FA204EB-20EA-4E56-99EC-5EF56D600E02
Content-Disposition: form-data; name="2017-02-01060411+0000.JPG"
Content-Type: image/jpeg
IMAGE
--0FA204EB-20EA-4E56-99EC-5EF56D600E02--
.

关于ios - 如何在单个 OneNote 页面上传多张图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41940183/

相关文章:

ios - 如何用UIBezierPath删除徒手画?

ios - 编写 iOS http Post 类

ios - 是否可以将 SSL 协议(protocol)与 NEVPNManager 一起使用(并且不使用 NETunnelProvider API)

javascript - 是否可以从应用程序控制 iTunes(使其播放暂停的歌曲)?

excel - 如何获取存储在本地 OneDrive 文件夹中的 Excel 工作簿的路径+文件名? (与其 URL 相反!)

objective-c - 如何在你的 cocoa 应用程序中像聚光灯一样制作搜索字段和搜索结果?

iphone - 使用 Xcode 4,拥有主项目 + 共享代码项目的正确方法是什么?

objective-c - 当应用程序隐藏时 NSTimer 停止?

office365 - 无法使用特殊字符 "("(左括号)创建/重命名文件

azure - 使用 One Drive Business API 访问默认驱动器时出现未经授权的访问错误 (401)