How to retrieve recents video's comments for a Dailymotion account - api

I am asking me if it's possible to retrieve recents video's comments for a given Dailymotion account.
For example, i want to get all recents video's comments for a given account every 2 minuts.
I have found severals Dailymotion API but don't found thet way to to that.
I tknow it's possible to read the list of a video‘s comments by issuing an HTTP GET to /video/{VIDEO_ID}/comments but do you know if it's possible to reteive all new comments for account's videos?
Thanks!

https://api.dailymotion.com/video/videoID/comments
will give you
{"page":1,"limit":10,"explicit":false,"has_more":false,"list":[{"id":"id","message":"wel done","owner":"id"},{"id":"id","message":"congrats","owner":"id"}]}
So, list has comments of video.Here there are 2 comments.

Related

Get all comments authored by a Google Plus user

Google Plus API makes it possible to get all comments for an activity if you know the activity id:
https://developers.google.com/+/domains/posts/reading#getting_a_list_of_comments_on_a_specific_post
But in my case I don't know the activity ids. I just know the id of the user, that has written the comments.
How can I find all comments authored by the user?
The Google+ API does not have such a feature. You could try searching for the user's name but that would find a lot of false positives.

Server query to YouTube API “is there any YouTube video containing this specific word?” - if so, what is the link, upload date etc

Do you think we could use the YouTube Data API to get to know which products have any YouTube review/video. Then paired with our system via, for instance, Video Name?
Your question isn't very clear. However, you want to try this.
https://developers.google.com/youtube/v3/docs/search/list#try-it
You can set type to snippet and q to the words you want to search for.

instagram api search hashtags isn't reliable - so can I do this?

I'm looking to somehow tell users to upload a picture and do something, either tag or # our company so we are notified in real time, i just need to fetch the url of the photo that was uploaded and tagged or # or ANYTHING.
the hashtag search doesn't seem to work correctly, i've tried multiple hashtags and they wont retrieve them in any type of real time or at all.
the real-time subscription only notifies me that there is a new photo tagged that i subscribed to, so i have api search for a list of new media with that tag, which goes back to point 1, its not accurate or reliable.
so do i have any options at all on instagram?
If not do I have any options on facebook? any real time keyword search to grab the url of the photo they uploaded with a unique tag.
Check out https://github.com/chapmanu/hummingbird, it might be what you're looking for.
My experience with the Instagram Real-Time API is, that it is rather reliable.
When you get a real-time ping and then call the endpoint for your hashtag, the results are ordered newest first.
You can then paginate until you hit the last known result.
Maybe this tutorial helps: http://www.mtrinitaria.com/mykhel/tutorial-instagram-real-time-photo-update-api-with-php/

Display venue public photo on iOS app

My apologies if I'm not using the most technical terms in my question as I am asking on behalf of a development team who is creating an app for me, but we are having trouble making a call to the Foursquare API to get public photos (at least one) of specific venues.
Until now they have only been able to get low resolution photos and are telling me we need to be authenticated but I'm not sure they are explaining what they need to me correctly.
I have searched for hours and have not been able to understand how we would be able to obtain at least one photo for a given venue. The closest I have come to is getting a list of photos for a venue using the example query: https://api.foursquare.com/v2/venues/43695300f964a5208c291fe3/photos?oauth_token=...TOKEN...&v=20130529
This involves the OAuth_Token and I had understood we didn't need this to get an image of a venue using the API.
Once again, apologies if I'm using any terms incorrectly as I am not a programmer myself. Thanks.
That call to venues/VENUE_ID/photos is indeed a way to solve your problem: you can do that to get public photos for specific venues, where the specific venue is identified by VENUE_ID. You don't need an OAuth token; instead, you can simply pass in client_id and client_secret parameters. Examine the URL pattern we document under "Userless access" here: https://developer.foursquare.com/overview/auth#userless
Once you have these responses, you need to construct a photo URL, and this is where you can specify the desired size. For each photo response, you take prefix + size + suffix to construct a full URL. For an example, see https://developer.foursquare.com/docs/responses/photo

SoundCloud API getting tracks favorites

Is it possible to know, who and when likes your track through SoundCloud API?
I can see this list on http://soundcloud.com/%usernick%/%track-name%/stats/who/favorites?from_date=2012-01-01&to_date=2012-06-09
Days statistics of favorites i can see it http://soundcloud.com/%usernick%/%track-name%/stats/counts/favorites?from_date=2012-01-01&to_date=2012-06-09
But how i can get it through API?
I except this info on GET /tracks/%track_id%/favorites.json or GET /users/user_id/favorites/%track_id%.json, but it isn't working.
Note: This is feature only for paid user.
PS: Sorry for my bad english.
I found only one way -- through /my/activity/, but in this case i must to get all my activity of all tracks, comments and favorites.