我想用Google API收集一张视频清单, 上传者/作者来自新西兰,
我使用分类信息过滤视频(使用 PHP)没有问题, 我只是不知道如何将NZ过滤器纳入上传者。 区域过滤器给了我不看作者的东西 。
我想用Google API收集一张视频清单, 上传者/作者来自新西兰,
我使用分类信息过滤视频(使用 PHP)没有问题, 我只是不知道如何将NZ过滤器纳入上传者。 区域过滤器给了我不看作者的东西 。
由于没有“在某个地点获得作者名单”的电话(至少,没有公布),我认为以下是你们所能做的最好办法。
寻找不同位置的视频。 因为“ 位置” 不是作者的位置, 而是他们与视频相关的位置, 您可以成为新西兰人, 从日本上传假期视频, 并将视频与日本连线, 但它不会显示。 或者你可以是一个澳大利亚人, 从他们在新西兰的假日上传了一粒磷酸盐, 并且会显示这一点 。
为了缩小范围, 在那之后, 您可以通过检查作者的位置过滤, 将澳洲人排除在外, 但是您不会用日本的视频获得Kiwi人。 但是这可能会给您一个合适的作者名单 。
现在,为了捕捉你可能错过的视频,你可以从那里得到这些作者的视频列表(一次一个 — — ouch ), 并合并到一起。 希望这样一来, Kiwis 就可以拿到一个视频列表。
但是,你也不会得到视频 在那里,提交人没有提供一个位置; 它非常中弹和失手,
对不起 可能不是你想找的答案
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...