Jaxel
Well-known member
So I have a page here:
http://yokappa.tv/channel/8wayrun
The class for this page is simple:
When I run this page through the Facebook Object Debugger it gets a 503 error:
https://developers.facebook.com/tools/debug/og/object?q=http://yokappa.tv/channel/8wayrun
When you view the raw scraped URL, you see:
https://developers.facebook.com/tools/debug/og/echo?q=http://yokappa.tv/channel/8wayrun
Why is this happening? Anyone know?
http://yokappa.tv/channel/8wayrun
The class for this page is simple:
Code:
class EWRcanal_ControllerPublic_Channels extends XenForo_ControllerPublic_Abstract
{
public function actionIndex()
{
$slug = $this->_input->filterSingle('string_id', XenForo_Input::STRING);
$channel = $this->getModelFromCache('EWRcanal_Model_Channels')->getChannel($slug);
$viewParams = array(
'channel' => $channel,
);
return $this->responseView(
'EWRcanal_ViewPublic_Channel', 'EWRcanal_Channel', $viewParams,
array('containerTemplate' => 'EWRcanal_CONTAINER')
);
}
}
When I run this page through the Facebook Object Debugger it gets a 503 error:
https://developers.facebook.com/tools/debug/og/object?q=http://yokappa.tv/channel/8wayrun
When you view the raw scraped URL, you see:
https://developers.facebook.com/tools/debug/og/echo?q=http://yokappa.tv/channel/8wayrun
Why is this happening? Anyone know?