For topics related to the "like" functionality in social networks such as Facebook, YouTube, etc. For Facebook's "like" functionality, there is also the more specific tag [facebook-like].
Questions tagged [social-media-like]
81 questions
0
votes
2 answers
parse youtube video likes dislikes using gadata API
I am using python and the gdata library to parse the info of a youtube video.
My code is this:
yt_service = gdata.youtube.service.YouTubeService()
entry = yt_service.GetYouTubeVideoEntry(video_id='someid')
but in the entry.rating or…

thodoris
- 69
- 8
0
votes
1 answer
Re: Tumblr "like-heart-button" script on homepage
I tried working with this coding posted on Nara's question, but I'm not sure how I'm suppose to do the HTML part of it. I kinda figured it had to be in tag, but not sure if I need to add a class or an id. I've been playing around…

White Wolf Wizard
- 30
- 8
0
votes
1 answer
How to implement Like feature similar to Instagram with Django using ajax?
hi I have been making a social media site with a like feature similar to Instagram where user does not need to view the individual post to like it but can like that post directly from the main page , how can i do that ?
my main template:
{% load…

sameerAhmedjan
- 11
- 1
- 6
0
votes
1 answer
Android - Display social media like stories
I wanted to create a stories display feature, eg like on instagram, but with a different background template for each story. I was trying to find a library for it but the only one I found is StoryView, which doesn't do what I want. Does anyone know…

MADi
- 23
- 8
0
votes
1 answer
LINE's "add friend" bottons on webpage disappear if the webpage is delivered via Cloudflare proxy
Our website has been serverd via Cloudflare proxy for a long time and everything goes well. Recently we wanted to place social media buttons on the webpages, we have buttons for LINE and for Facebook. Buttons of both social media work normally when…

Ray Yen
- 55
- 9
0
votes
2 answers
Tumblr "like-heart-button" script on homepage
How to make a 'like' button for each post without going on permalink page? I mean, even in the homepage, which script can I use to have something like the heart on this page? (mouseover the photos, there's a heart to like the post)

Nara
- 11
- 1
- 1
- 3
0
votes
1 answer
How can I return a number of likes in laravel withe ajax
here is my app.blade
$('.like').click(function(event) {
var id = $(this).data('id');
$.ajax({
url: "{{route('post.like','')}}/"+id,
})
});
and here is my AdsController.php
public function likePost(Request $request){
…

souma
- 9
- 3
0
votes
3 answers
Retrieving "likes" tied to users from a database
I'm new to database structure. I'm trying to create an app that allows users to like certain entries, but I want to be able to tie likes to users so that I can change the visuals before/after the like action.
I think from research that I should have…

Ian Storm Taylor
- 8,520
- 12
- 55
- 72
0
votes
2 answers
Building a form for a like button in a polymorphic relationship in Rails
I'm trying to build a form for a like button. This like model is polymorphic to different types of Models (comments / posts / etc.) and belongs to a certain user.
When this user is viewing a blog item for instance, I want to show a like button below…

bo-oz
- 2,842
- 2
- 24
- 44
0
votes
2 answers
Unable to like media in instagram from any access token
Since 3 or 4 days ago i'm not able to like any photos from any token, I think they blocked me to like. I still can follow/unfollow users via my application. I also can like photos via instagram iOS app.
This is the error i have:
"meta": {
…

Valery Fludkov
- 135
- 1
- 3
- 15
0
votes
1 answer
Instagram restrictions for Like permission
Since 4 days Instagram wants you to fill a form to get permission to any post action, like following someone through the Instagram API.
In the moment I am developing an Like App for Instagram (you like someones photo for coins, with whom you can buy…

Erik Lüth
- 23
- 1
- 7
0
votes
1 answer
Limit user to 1 like?
How can we limit a user to 1 like per comment?
comments_controller.rb
def like
@comment = Comment.find(params[:id])
@comment.increment!(:likes)
@comment.create_activity :like
flash[:success] = 'Thanks for liking!'
…

AnthonyGalli.com
- 2,796
- 5
- 31
- 80
0
votes
1 answer
Get media likes with real-time photo updates API
With the real-time photos update (https://instagram.com/developer/realtime/) it's possible to have some push updates when a media is created, or when a media with a specific tag is posted, etc.
Is there a way to get an update when someone likes a…

gromez
- 1
0
votes
1 answer
'Like/Unlike' button with Rails 4
I'm trying to create a simple Like/unlike button with Rails 4. I tried to do this with socialization gem, but after one day of struggling I gave up and decided to modify M. Hartl's 'foollow' mechanism from Rails Tutorial. Here is what i got so…

qwerty1234
- 1
- 3
0
votes
1 answer
Yammer embed action (follow and like)
Has anybody got the Yammer embed API for Follow and Like to work in a SharePoint site? I can get the buttons to appear and when I click on them they change to Liked and Followed but nothing is posted to Yammer and nothing appears in the activity…

BrettvG
- 1
- 2