Swift에서 CoreAPI를 사용한 [인증 편]
1. Dropbox SDK의 import
Swift로 Objective-C의 Framework를 읽는 방법
나는 이 보도를 참고했다.m(__)m
2. 인증
버튼을 누르면 Dropbox에 연결됩니다.
AppDelegate.swiftlet dbAcount = DBSession(appKey: "YOUR_APP_KEY", appSecret: "YOUR_APP_SECRET", root:"ROOT" )
DBSession.setSharedSession(dbAcount)
ROOT
네kDBRootDropbox
네kDBRootAppFolder
네.
ViewContoroller.swift@IBAction func MyButton(sender: UIButton) {
if !DBSession.sharedSession().isLinked(){
DBSession.sharedSession().linkFromController(self)
}
}
이런 느낌으로 만들었어요!
Reference
이 문제에 관하여(Swift에서 CoreAPI를 사용한 [인증 편]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/shift_option_k/items/1b20d264c7fa9e5c4e39
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
버튼을 누르면 Dropbox에 연결됩니다.
AppDelegate.swift
let dbAcount = DBSession(appKey: "YOUR_APP_KEY", appSecret: "YOUR_APP_SECRET", root:"ROOT" )
DBSession.setSharedSession(dbAcount)
ROOT
네kDBRootDropbox
네kDBRootAppFolder
네.ViewContoroller.swift
@IBAction func MyButton(sender: UIButton) {
if !DBSession.sharedSession().isLinked(){
DBSession.sharedSession().linkFromController(self)
}
}
이런 느낌으로 만들었어요!Reference
이 문제에 관하여(Swift에서 CoreAPI를 사용한 [인증 편]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/shift_option_k/items/1b20d264c7fa9e5c4e39텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)