Facebook应用程序的主要哈希值

时间:2015-06-07 22:08:08

标签: android facebook

令人惊艳的Facebook文档说我必须运行:

yourpath <- insert your path or getwd() if in working directory
colname  <- replace_with_column_name

min(                           #min of all the mins
    sapply( list.files( yourpath, pattern="citibike.*csv$),  #regex match
     function(f) min( read.csv(f)[[colname]]   # the columns rather than a whole dataframe
                       )  # returns the single mins
    )

创建调试密钥哈希,无论这些是什么。

我注意到在我的家庭目录中我已经有一个keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64 文件夹和一个文件.android。如果我按照Facebook的说明操作,我是否会覆盖此debug.keystore文件或其中的任何内容,并可能搞砸了它用于的任何内容?如果已经有一个名为androiddebugkey的别名(不管是什么)怎么办?我必须将其命名为androiddebugkey吗?

对不起,我为Android制作了10个应用程序,但我对密码学一无所知。

0 个答案:

没有答案
相关问题