我使用https://github.com/soundcloud/CocoaSoundCloudAPI中提到的库开发了一个与 SoundCloud 集成的 iPad 应用程序
我的应用需要能够使用这些库将声音发布到 SoundCloud。这些库都作为子模块包含在我的 git repo 中,使用
git submodule add git://github.com/nxtbgthng/OAuth2Client.git
git submodule add git://github.com/soundcloud/CocoaSoundCloudAPI.git
git submodule add git://github.com/nxtbgthng/JSONKit.git
git submodule add git://github.com/nxtbgthng/OHAttributedLabel.git
git submodule add git://github.com/soundcloud/CocoaSoundCloudUI.git
现在我的问题是,当我将应用程序提交到应用商店时,我应该使用哪些加密设置?SoundCloud 是否只进行身份验证,然后以明文、未加密的方式发送数据?或者数据在发送到 SoundCloud 之前是否已加密?
这很重要,因为苹果威胁要对未经授权使用加密的应用程序“严厉处罚”。