How to download PDF use NSURLSession POST with headers and body parameters?
I try this on Postman and it works (got 200), it can download PDF. But when I tried to download it return responseString = {"detail":"JSON parse error - No JSON object could be decoded"}
and got 400.
@IBAction func downloadPDF(_ sender: Any) {
let url = URL(string: "https://api-apuat2.tokiomarine-life.co.id/sam/money_analysis_report/")!
var request = URLRequest(url: url)
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.setValue("Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwidXNlcl9pZCI6OTg1NSwianRpIjoiZGMzY2Q3ZTE3NjNkNDUwNzg1NjA3NGVjODVhYzA1MTgiLCJleHAiOjE1NDcwMDA0MjJ9.6y92gdz36i1L9mJ3BUYAiEf8xVR2YM85xLiubQELoGA", forHTTPHeaderField: "Authorization")
request.httpMethod = "POST"
let postString = "contact_id="
request.httpBody = postString.data(using: .utf8)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data, error == nil else { // check for fundamental networking error
print("error=(error!)")
return
}
if let httpStatus = response as? HTTPURLResponse, httpStatus.statusCode != 200 { // check for http errors
print("statusCode should be 200, but is (httpStatus.statusCode)")
print("response = (response!)")
}
let responseString = String(data: data, encoding: .utf8)
print("responseString = (responseString!)")
}
task.resume()
}
How to repair (the correct code) this so when I click button, it automatically download PDF?
swift pdf post nsurlsession
add a comment |
I try this on Postman and it works (got 200), it can download PDF. But when I tried to download it return responseString = {"detail":"JSON parse error - No JSON object could be decoded"}
and got 400.
@IBAction func downloadPDF(_ sender: Any) {
let url = URL(string: "https://api-apuat2.tokiomarine-life.co.id/sam/money_analysis_report/")!
var request = URLRequest(url: url)
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.setValue("Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwidXNlcl9pZCI6OTg1NSwianRpIjoiZGMzY2Q3ZTE3NjNkNDUwNzg1NjA3NGVjODVhYzA1MTgiLCJleHAiOjE1NDcwMDA0MjJ9.6y92gdz36i1L9mJ3BUYAiEf8xVR2YM85xLiubQELoGA", forHTTPHeaderField: "Authorization")
request.httpMethod = "POST"
let postString = "contact_id="
request.httpBody = postString.data(using: .utf8)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data, error == nil else { // check for fundamental networking error
print("error=(error!)")
return
}
if let httpStatus = response as? HTTPURLResponse, httpStatus.statusCode != 200 { // check for http errors
print("statusCode should be 200, but is (httpStatus.statusCode)")
print("response = (response!)")
}
let responseString = String(data: data, encoding: .utf8)
print("responseString = (responseString!)")
}
task.resume()
}
How to repair (the correct code) this so when I click button, it automatically download PDF?
swift pdf post nsurlsession
add a comment |
I try this on Postman and it works (got 200), it can download PDF. But when I tried to download it return responseString = {"detail":"JSON parse error - No JSON object could be decoded"}
and got 400.
@IBAction func downloadPDF(_ sender: Any) {
let url = URL(string: "https://api-apuat2.tokiomarine-life.co.id/sam/money_analysis_report/")!
var request = URLRequest(url: url)
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.setValue("Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwidXNlcl9pZCI6OTg1NSwianRpIjoiZGMzY2Q3ZTE3NjNkNDUwNzg1NjA3NGVjODVhYzA1MTgiLCJleHAiOjE1NDcwMDA0MjJ9.6y92gdz36i1L9mJ3BUYAiEf8xVR2YM85xLiubQELoGA", forHTTPHeaderField: "Authorization")
request.httpMethod = "POST"
let postString = "contact_id="
request.httpBody = postString.data(using: .utf8)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data, error == nil else { // check for fundamental networking error
print("error=(error!)")
return
}
if let httpStatus = response as? HTTPURLResponse, httpStatus.statusCode != 200 { // check for http errors
print("statusCode should be 200, but is (httpStatus.statusCode)")
print("response = (response!)")
}
let responseString = String(data: data, encoding: .utf8)
print("responseString = (responseString!)")
}
task.resume()
}
How to repair (the correct code) this so when I click button, it automatically download PDF?
swift pdf post nsurlsession
I try this on Postman and it works (got 200), it can download PDF. But when I tried to download it return responseString = {"detail":"JSON parse error - No JSON object could be decoded"}
and got 400.
@IBAction func downloadPDF(_ sender: Any) {
let url = URL(string: "https://api-apuat2.tokiomarine-life.co.id/sam/money_analysis_report/")!
var request = URLRequest(url: url)
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.setValue("Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwidXNlcl9pZCI6OTg1NSwianRpIjoiZGMzY2Q3ZTE3NjNkNDUwNzg1NjA3NGVjODVhYzA1MTgiLCJleHAiOjE1NDcwMDA0MjJ9.6y92gdz36i1L9mJ3BUYAiEf8xVR2YM85xLiubQELoGA", forHTTPHeaderField: "Authorization")
request.httpMethod = "POST"
let postString = "contact_id="
request.httpBody = postString.data(using: .utf8)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data, error == nil else { // check for fundamental networking error
print("error=(error!)")
return
}
if let httpStatus = response as? HTTPURLResponse, httpStatus.statusCode != 200 { // check for http errors
print("statusCode should be 200, but is (httpStatus.statusCode)")
print("response = (response!)")
}
let responseString = String(data: data, encoding: .utf8)
print("responseString = (responseString!)")
}
task.resume()
}
How to repair (the correct code) this so when I click button, it automatically download PDF?
swift pdf post nsurlsession
swift pdf post nsurlsession
asked Jan 2 at 2:48
SariminSarimin
3171311
3171311
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54000685%2fhow-to-download-pdf-use-nsurlsession-post-with-headers-and-body-parameters%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54000685%2fhow-to-download-pdf-use-nsurlsession-post-with-headers-and-body-parameters%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown