とのより良い運を持っているかもしれません。
Dailymotion APIs documentationページを読み、プログラムでビデオ情報にアクセスする方法をご覧ください。フェッチ、JSON形式の応答であなたのビデオのタイトルを取得するには、REST APIを使用して一例として
、:
{
"title": "The Farmer and His Sons- Aesop's fables"
}
別のオプションさを返し
https://api.dailymotion.com/video/xks75n?fields=title
質問にあるURLにoEmbed APIを使用してください。あなたはjson_decode()
は "デコード" それはPHPオブジェクトや配列に値(複数可)にアクセスするために使用することができます。
{
"type": "video",
"version": "1.0",
"provider_name": "Dailymotion",
"provider_url": "http:\/\/www.dailymotion.com",
"title": "The Farmer and His Sons- Aesop's fables",
"author_name": "hooplakidz",
"author_url": "http:\/\/www.dailymotion.com\/hooplakidz",
"width": 480,
"height": 269,
"html": "<iframe src=\"http:\/\/www.dailymotion.com\/embed\/video\/xks75n\" width=\"480\" height=\"269\" frameborder=\"0\"></iframe>",
"thumbnail_url": "http:\/\/static2.dmcdn.net\/static\/video\/369\/709\/34907963:jpeg_preview_large.jpg?20110830044159",
"thumbnail_width": 426.666669846,
"thumbnail_height": 240
}
ヒントを返し
http://www.dailymotion.com/services/oembed?format=json&url=http://www.dailymotion.com/embed/video/xks75n
。あなたがPHPを使用している場合
をお試しください – George