Treblig
Treblig

Reputation: 21

Accessing a password protected video on DailyMotion

I am trying to build a PHP app to access & read my own movies on DailyMotion. A movie on this DM site can have 3 different statuses : public, private, or password protected.

The movies I want to access belong to the latter categorie. However, I did not find any help about how to provide the required "movie password" (NOT the owner pwd) on the API call issued when accessing it. Any indication ?

Upvotes: 2

Views: 3174

Answers (1)

ChristianF
ChristianF

Reputation: 2061

A quick read of the DailyMotion API documentation reveals that is uses OAuth 2.0 for authentication.

It also specifies that the apps are normally restricted to public content only, with the following note

For accessing and/or manipulating protected resources (such as private user data), the client application (your application) needs to be granted permission to do so.

I recommend following the link above, for more information on how to gain this access.

Upvotes: 2

Related Questions