Your object configuration is *almost* right. Here's the few things that don't seem quite there:
- It's unpublished - This is probably obvious, but still pointing it out.
- The query params are half correct. You have:
option=com_djclassified
view=Classified Listing
The option part is correct. The view name likely isn't. The view=xyz should be whatever is shown in the URL (when SEF URLs are turned off). You can use anything in the URL, like a catid, Itemid, or anything else that may help specify the right 'group' of listings. For instance, if all of your listings in the Classified Listings category have a URL like:
index.php?option=com_djclassified&catid=12&view=listing&id=12
index.php?option=com_djclassified&catid=12&view=listing&id=2520
index.php?option=com_djclassified&catid=12&view=listing&id=329&Itemid=23
The following are all 'common' to the listings in that category:
option=com_djclassified
catid=12
view=listing
That's what you'd put in the Query Params box. Please note, the URLs above are completely made up, so that example will almost certainly not work for your site.
For the Open Graph Tags box, you should specify any common tags you want to use for all listings, like a generic image for vehicles (on the Vehicle Object) and another for property (on the Property object), like:
image=http://yoursite.com/link-to-good-generic-image-for-listings.jpg
If you have a category for just Chicago, you could even add Open Graph tags to just that category's object, like:
latitude=25.4
longitude=36.9
I hope that helps explain a little bit more. Once you think you have tags setup for a page, you can always check them with the Facebook URL Debug Tool:
developers.facebook.com/tools/debug
Thanks,
Alex