我的问题与此类似,但我是从开发人员的角度而不是公司的角度撰写的.
我更喜欢将我的个人和职业生活分开,因此希望能够创建与我的个人FB帐户无关的Facebook应用程序.根据FB政策,每个帐户必须与真人关联,即我不能拥有单独的开发者帐户.有没有办法在不使用我的个人帐户的情况下创建FB应用程序?你有其他自由职业者(甚至非自由职业者)只使用你的个人账户吗?如果是这样,你对这样做有任何疑虑吗?如果我要与其他开发人员合作,我是否需要担心与他们分享任何个人信息?
谢谢.
假设我有以下架构:
{
"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)