English 中文(简体)
暴露不至秘密的奥乌特钥匙的风险是什么? 是否有任何工作?
原标题:What are the risks of exposing the not-so-secret oauth key? Are there any workarounds?

目前,我正在开发一个多平台,使用Twitter,包括通过 o认证。

我审视了许多现有数据,其中多数似乎都把id和秘密钥匙放在了上面。

这样做有什么风险? 难道只有一个人能够“下载和检查”你的双手,才能提取你的钥匙,然后才能推定为你的(营养风格)? 或者还有其他风险?


除了风险之外,人们是否知道任何工作或解决办法?

我已经看到的一个解决办法是,有些人通过自己的网站(例如)绕过这一条。 OAuthwit, with only Consumer Key (not use Consumer Secret) on Pic android - but this pornography may be a my summary and cost - I d rather not path all calls through my own web service if I can prevent it (or have I misunderstood the Solutions - is it only the auth that go through a website?)

问题回答

唯一真正的危险似乎是有人会冒着你的申请,并受到Twitter的禁止,那么,你们就不得不用新的钥匙。

这一谷歌I/O的谈话有点人谈到如何排除该守则,使其更难以推翻工程师。

我所到的工作是利用经认证的网络服务电话,从你的网络服务器(SSL)中挑选秘密钥匙。 你们可以在客户(记忆中作出判断)中加以对待。 当你需要与服务器再次连接时使用。

我看到的倒数部分是,有人可能仍然会把自己的遗体放在gger之下,并检查记忆和掌握钥匙。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签