Unfortunately, getting this information will require an install. Since you mentioned you're using Blogger, that pretty much leaves you with JavaScript.
The best thing to do is ensure they've installed before they've hit the "Like" button, as that will be easier to deal with. Installing looks like this (using some jQuery too, for brevity):
<div id="fb-root"></div>
<script src="//connect.facebook.net/en_US/all.js" type="text/javascript">
<script type="text/javascript">
FB.init({
appId : 'YOUR_APP_ID', // App ID
status : true, // check login status
});
$('#button').click(function(evt)
{
FB.login(function(response)
{
if (response.authResponse)
{
// yay! logged in!
}
});
});
Now that you have an install, all you need to do is hook in to the "Like" event.
FB.Event.subscribe("edge.create", function(url)
{
FB.getLoginStatus(function(response)
{
if (response.status === 'connected')
{
var userId = response.authResponse.userID;
// you now have the userId and the URL of the object they liked.
}
}
});
Once you have a user ID and URL, you can fire off an AJAX request somewhere so you can keep track of who liked what.
More documentation: