0

私はアプリを作成しており、Facebook と統合したいと考えています。

これに取り組んでいる間、私は出くわしました:

  • 私が聞いた「アプリケーション署名」という名前は、debug.keystore ファイルに存在し、すべてのアプリケーションに存在します。

  • Facebook でアプリを作成する際に、「ハッシュ キー」フィールドに同じアプリ キーを指定する必要があります。

私の質問は、このキーをどのように生成/表示できますか?

何か間違っている場合は、親切に修正してください。

前もって感謝します。

4

2 に答える 2

0

The most easiest way to get this key is enable logging inside facebook library and when your application fails copying this key from logcat output. To do this open com.facebook.android.Util and set to true private static boolean ENABLE_LOG = false;. Do not forget turn off this back after, because this will can create security issues

Official tutorial with more detailed description and another one way to do this here

于 2012-08-14T14:31:45.670 に答える