You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
ingconti
3 years agoHelpful | Level 5
Re: Error in call to API function "files/upload": HTTP header "Dropbox-API-Arg":
good you are available
Said so, pls let me know How to fix it.
to recap:
a) my ap is written in swift, NO other components (neither official dropbox library, too big and too messy)
b) it did ...
Greg-DB
Dropbox Staff
Thanks for following up. I'm glad to hear you got this working, and thanks for the feedback!
ingconti
3 years agoHelpful | Level 5
a more "swift" solution for string with a copiale of Unit test:
func DB_asciiEscape(_ s: String) -> String {
let out = s.unicodeScalars.reduce("", { (partialResult: String, char: UnicodeScalar) -> String in
if !char.isASCII {
return partialResult + String(format:"\\u%04x", char.value)
} else {
if (char == "\u{7F}") {
return partialResult + "\\u007f"
} else {
return partialResult + "\(char)"
}
}
}
)
return out
}
//------ UNIT TESTS:
func testUtf8Decode(){
let unescaped = "/OUT/aaaaa_000.jpg"
let escaped = DB_asciiEscape(unescaped)
print(escaped)
let contains = escaped.contains("uff3f000.jpg")
XCTAssert(contains, "not ecaped")
}
func testUtf8Decode2(){
let unescaped = "αβγ.jpg"
let escaped = DB_asciiEscape(unescaped)
print(escaped)
let contains = escaped.contains("\\u03b1\\u03b2\\u03b3")
XCTAssert(contains, "not ecaped")
}
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,910 PostsLatest Activity: 3 days agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!