monotouch编译monotouch-bindings facebook api

时间:2013-07-05 12:28:43

标签: ios facebook git xamarin.ios xamarin

我需要来自monotouch-bindings的facebook api包装器,所以我从github下载了monotouch-bindings的整个包。

我无法编译facebook dll(我在macosx 10.8.3上进行编译)。

文件夹monotouch-bindings-master/facebook中的make命令给出了一个错误:

git clone git@github.com:facebook/facebook-ios-sdk.git
Cloning into 'facebook-ios-sdk'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
make[1]: *** [facebook-ios-sdk] Error 128
make: *** [build-binding] Error 2

我也试过了sudo make,但我得到了同样的错误。 我已检查github.com:facebook/facebook-ios-sdk.git是否存在,看起来确实存在。

2 个答案:

答案 0 :(得分:1)

看来你的实际问题在于git

Google中的快速搜索产生了Github的这篇有用的文章:Error: Permission denied (publickey)

我怀疑,如果你调查它,你会提交Make sure you have a key and SSH is using it来解决你的问题。

这并不是说这不能解决你所有的问题,但它应该解决这个问题。

答案 1 :(得分:0)

我在运行make命令之前已经安装了github客户端,并且编译成功了。

感谢您的回答!!!