I have an issue using the OpenGraph on my website (I don't get images or content when I share the URL listed below). When I test my URL with the debugger, I get the famous Could not retrieve data from URL-error.
I've been searching for solutions on the internet and possible causes could be corrupt code (unvalid according to the validator) or missing meta-tags.
I've fixed all the errors, but still, the Facebook debugger can't get data from the URL.
So maybe, it has something to do with my website structure. I have an index.php-file and a contentdirectory where I include all the content:
<div class="content_container">
<?php
// Include the page content
include_once('content/' . $_PAGE . '.php');
?>
</div>
So my URL's look like www.mysite.com/index.php?page=news&article=12
Could this have anything to do with my issue?