小编use*_*215的帖子

如何在不使用个人Facebook帐户的情况下为公司创建Facebook应用程序?

我的问题与类似,但我是从开发人员的角度而不是公司的角度撰写的.

我更喜欢将我的个人和职业生活分开,因此希望能够创建与我的个人FB帐户无关的Facebook应用程序.根据FB政策,每个帐户必须与真人关联,即我不能拥有单独的开发者帐户.有没有办法在不使用我的个人帐户的情况下创建FB应用程序?你有其他自由职业者(甚至非自由职业者)只使用你的个人账户吗?如果是这样,你对这样做有任何疑虑吗?如果我要与其他开发人员合作,我是否需要担心与他们分享任何个人信息?

谢谢.

facebook facebook-graph-api facebook-oauth

28
推荐指数
1
解决办法
9864
查看次数

使用GenericRecord在Avro中填充嵌套记录的问题

假设我有以下架构:

{
 "name" : "Profile",
 "type" : "record",
 "fields" : [
  { "name" : "firstName", "type" : "string" },
  { "name" : "address" , "type" : {
   "type" : "record",
   "name" : "AddressUSRecord",
   "fields" : [
    { "name" : "address1" , "type" : "string" },
    { "name" : "address2" , "type" : "string" },
    { "name" : "city" , "type" : "string" },
    { "name" : "state" , "type" : "string" },
    { "name" : "zip" , "type" : "int" …
Run Code Online (Sandbox Code Playgroud)

avro

8
推荐指数
1
解决办法
6916
查看次数