Swift
Swift
OneNote - Create Page
See more OneNote Examples
Creates a new OneNote page with a rendered image and an attached PDF.Chilkat Swift Downloads
func chilkatTest() {
var success: Bool = false
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
// To create a OneNote page, we want to send an HTTP request like the following:
// POST https://graph.microsoft.com/v1.0/me/onenote/sections/{section_id}/pages
// Content-length: 312
// Content-type: multipart/form-data; boundary=MyPartBoundary198374
//
// --MyPartBoundary198374
// Content-Disposition:form-data; name="Presentation"
// Content-Type:text/html
//
// <!DOCTYPE html>
// <html>
// <head>
// <title>A page with <i>rendered</i> images and an <b>attached</b> file</title>
// <meta name="created" content="2015-07-22T09:00:00-08:00" />
// </head>
// <body>
// <p>Here's an image from an online source:</p>
// <img src="https://..." alt="an image on the page" width="500" />
// <p>Here's an image uploaded as binary data:</p>
// <img src="name:imageBlock1" alt="an image on the page" width="300" />
// <p>Here's a file attachment:</p>
// <object data-attachment="FileName.pdf" data="name:fileBlock1" type="application/pdf" />
// </body>
// </html>
//
// --MyPartBoundary198374
// Content-Disposition:form-data; name="imageBlock1"
// Content-Type:image/jpeg
//
// ... binary image data ...
//
// --MyPartBoundary198374
// Content-Disposition:form-data; name="fileBlock1"
// Content-Type:application/pdf
//
// ... binary file data ...
//
// --MyPartBoundary198374--
// Build the request in a Chilkat HTTP request object:
let req = CkoHttpRequest()!
// Our URL is https://graph.microsoft.com/v1.0/me/onenote/sections/{section_id}/pages
// The path part of the URL is "/v1.0/me/onenote/sections/{section_id}/pages"
// In this example, our section ID is "0-3A33FCEB9B74CC15!20350"
req.path = "/v1.0/me/onenote/sections/0-3A33FCEB9B74CC15!20350/pages"
// We'll be sending a POST.
req.httpVerb = "POST"
// The Content-Type is multipart/form-data
// Chilkat will automatically generate a boundary string.
req.contentType = "multipart/form-data"
// When Chilkat HTTP was written many years ago, multipart requests were primarily for uploads.
// Thus the names of methods that add a multipart section end with "ForUpload".
// The multipart request we wish to build has 3 sections: text/html, image/jpeg, and application/pdf.
// ------------------------------
// Add the text/html part.
// ------------------------------
let sbHtml = CkoStringBuilder()!
var bCrlf: Bool = true
sbHtml.appendLine(str: "<!DOCTYPE html>", crlf: bCrlf)
sbHtml.appendLine(str: "<html>", crlf: bCrlf)
sbHtml.appendLine(str: " <head>", crlf: bCrlf)
sbHtml.appendLine(str: " <title>A page with <i>rendered</i> images and an <b>attached</b> file</title>", crlf: bCrlf)
sbHtml.appendLine(str: " <meta name=\"created\" content=\"TIMESTAMP_CURRENT\" />", crlf: bCrlf)
sbHtml.appendLine(str: " </head>", crlf: bCrlf)
sbHtml.appendLine(str: " <body>", crlf: bCrlf)
sbHtml.appendLine(str: " <p>Here's an image from an online source:</p>", crlf: bCrlf)
sbHtml.appendLine(str: " <img src=\"https://www.chilkatsoft.com/images/starfish.jpg\" alt=\"an image on the page\" width=\"500\" />", crlf: bCrlf)
sbHtml.appendLine(str: " <p>Here's an image uploaded as binary data:</p>", crlf: bCrlf)
sbHtml.appendLine(str: " <img src=\"name:imageBlock1\" alt=\"an image on the page\" width=\"300\" />", crlf: bCrlf)
sbHtml.appendLine(str: " <p>Here's a file attachment:</p>", crlf: bCrlf)
sbHtml.appendLine(str: " <object data-attachment=\"FileName.pdf\" data=\"name:fileBlock1\" type=\"application/pdf\" />", crlf: bCrlf)
sbHtml.appendLine(str: " </body>", crlf: bCrlf)
sbHtml.appendLine(str: "</html>", crlf: bCrlf)
let dtNow = CkoDateTime()!
dtNow.setFromCurrentSystemTime()
var numReplaced: Int = sbHtml.replace(value: "TIMESTAMP_CURRENT", replacement: dtNow.get(asTimestamp: true)).intValue
req.addString(forUpload2: "Presentation", filename: "", strData: sbHtml.getAsString(), charset: "utf-8", contentType: "text/html")
// ------------------------------
// Add the JPG image.
// ------------------------------
success = req.addFile(forUpload2: "imageBlock1", path: "qa_data/jpg/penguins2.jpg", contentType: "image/jpeg")
if success == false {
print("\(req.lastErrorText!)")
return
}
// ------------------------------
// Add the PDF attachment.
// ------------------------------
let bdPdf = CkoBinData()!
success = bdPdf.loadFile(path: "qa_data/pdf/helloWorld.pdf")
if success == false {
print("Failed to load PDF file.")
return
}
success = req.addBd(forUpload: "fileBlock1", remoteFilename: "FileName.pdf", byteData: bdPdf, contentType: "application/pdf")
if success == false {
print("\(req.lastErrorText!)")
return
}
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.authToken = "ACCESS_TOKEN"
// POST to https://graph.microsoft.com/v1.0/me/onenote/sections/{section_id}/pages
// The path part of the URL is already specified in the req object.
// We only need to specify the domain and the fact that we're doing "https" (SSL/TLS).
let resp = CkoHttpResponse()!
success = http.httpSReq(domain: "graph.microsoft.com", port: 443, ssl: true, request: req, response: resp)
if success == false {
print("\(http.lastErrorText!)")
return
}
let sbResponseBody = CkoStringBuilder()!
resp.getBodySb(sb: sbResponseBody)
let jResp = CkoJsonObject()!
jResp.loadSb(sb: sbResponseBody)
jResp.emitCompact = false
print("Response status code: \(resp.statusCode.intValue)")
print("Response Body:")
print("\(jResp.emit()!)")
var respStatusCode: Int = resp.statusCode.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode >= 400 {
print("Response Header:")
print("\(resp.header!)")
print("Failed.")
return
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('admin%40chilkat.io')/onenote/sections('0-3A33FCEB9B74CC15%2120350')/pages/$entity",
// "id": "0-18ac61117a664f7e946bcceaeebd6f57!36-3A33FCEB9B74CC15!20350",
// "self": "https://graph.microsoft.com/v1.0/users/admin@chilkat.io/onenote/pages/0-18ac61117a664f7e946bcceaeebd6f57!36-3A33FCEB9B74CC15!20350",
// "createdDateTime": "2020-10-22T19:02:12Z",
// "title": "A page with rendered images and an attached file",
// "createdByAppId": "WLID-00000000441C9990",
// "contentUrl": "https://graph.microsoft.com/v1.0/users/admin@chilkat.io/onenote/pages/0-18ac61117a664f7e946bcceaeebd6f57!36-3A33FCEB9B74CC15!20350/content",
// "lastModifiedDateTime": "2020-10-23T00:02:13.3254289Z",
// "links": {
// "oneNoteClientUrl": {
// "href": "onenote:https://d.docs.live.net/3a33fceb9b74cc15/Documents/Testing%20Notebook/Ddd.one#A%20page%20with%20rendered%20images%20and%20an%20attached%20file§ion-id=9d78c221-486e-45f8-8355-1810e475f6c0&page-id=36cd1982-1ef1-4b11-b5a1-30b3dbc43d05&end"
// },
// "oneNoteWebUrl": {
// "href": "https://onedrive.live.com/redir.aspx?cid=3a33fceb9b74cc15&page=edit&resid=3A33FCEB9B74CC15!20344&parId=3A33FCEB9B74CC15!187&wd=target%28Ddd.one%7C9d78c221-486e-45f8-8355-1810e475f6c0%2FA%20page%20with%20rendered%20images%20and%20an%20attached%20file%7C36cd1982-1ef1-4b11-b5a1-30b3dbc43d05%2F%29"
// }
// }
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var odata_context: String? = jResp.string(of: "\"@odata.context\"")
var id: String? = jResp.string(of: "id")
var self: String? = jResp.string(of: "self")
var createdDateTime: String? = jResp.string(of: "createdDateTime")
var title: String? = jResp.string(of: "title")
var createdByAppId: String? = jResp.string(of: "createdByAppId")
var contentUrl: String? = jResp.string(of: "contentUrl")
var lastModifiedDateTime: String? = jResp.string(of: "lastModifiedDateTime")
var linksOneNoteClientUrlHref: String? = jResp.string(of: "links.oneNoteClientUrl.href")
var linksOneNoteWebUrlHref: String? = jResp.string(of: "links.oneNoteWebUrl.href")
}