diff --git a/src/Plugin/video_embed_field/Provider/Dailymotion.php b/src/Plugin/video_embed_field/Provider/Dailymotion.php
index 9c92520..780b32d 100755
--- a/src/Plugin/video_embed_field/Provider/Dailymotion.php
+++ b/src/Plugin/video_embed_field/Provider/Dailymotion.php
@@ -49,4 +49,22 @@ class Dailymotion extends ProviderPluginBase {
     return isset($matches['id']) ? $matches['id'] : FALSE;
   }
 
+
+  /**
+   * Get the Dailymotion oEmbed data.
+   *
+   * @return array
+   *   An array of data from the oEmbed endpoint.
+   */
+  protected function oEmbedData() {
+    return json_decode(file_get_contents('http://www.dailymotion.com/services/oembed?url=https://www.dailymotion.com/video/' . $this->getVideoId() . '&format=json'));
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getName() {
+    return $this->oEmbedData()->title;
+  }
+
 }
