Facebook API返回空视频列表

时间:2017-05-25 14:39:35

标签: facebook facebook-graph-api video facebook-opengraph

我正在尝试使用opengraph facebook API。我想通过致电/我/视频来获取我的视频

我正在使用带有用户访问令牌的Opengraph API资源管理器,但响应始终为空:{data:[]}

我的令牌是使用每个访问权限生成的(我选中了所有复选框)。

/ me / photos工作正常,但不是/ me / videos

有什么想法吗?

谢谢

1 个答案:

答案 0 :(得分:0)

根据您的评论,我可以告诉您的问题没有描述您正在寻找的内容。您并未查找已上传/已标记的视频,因此此端点无法为您的案例工作。

仅供参考,此端点仅返回该用户被标记的视频列表。如果您还要查看,则需要通过向查询添加apply plugin: 'com.android.library' apply plugin: 'com.neenbedankt.android-apt' android { def rootConfig = rootProject.ext compileSdkVersion rootConfig.androidCompileSdkVersion buildToolsVersion rootConfig.androidBuildToolsVersion dataBinding { enabled = true } defaultConfig { minSdkVersion rootConfig.androidMinSdkVersion targetSdkVersion rootConfig.androidTargetSdkVersion versionCode rootConfig.applicationVersionCode versionName rootConfig.applicationVersionName } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { //include appDependencies def appDependencies = rootProject.ext.appDependencies //compile jars,... compile fileTree(dir: 'libs', include: ['*.jar']) //compile other projects compile project(':mvvmbase') compile project(':logic') compile project(':model') compile project(':utility') //compile appDependencies compile appDependencies.appCompat compile appDependencies.dagger apt appDependencies.daggerCompiler provided appDependencies.javaxAnnotation //TestCompile androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) testCompile appDependencies.testCompile } 参数来指定此端点对于您上传的视频。

来源:https://developers.facebook.com/docs/graph-api/reference/video

您正在寻找已添加书签的链接,而且似乎是API端点可以访问Facebook"已保存的链接"已不可用(Is there a way to get the Saved Links?