I had an action which used to work fine until today morning but now its not behaving the way it should.
Facebook is not catching variables that i send after "index.jsp?". Because of which though the actions are published it show it shows null for the puzzle id and timing.

Below are codes i tried both gave me same issues.
FB.api('/me/mpuzzleapp:solve?mpuzzle='+encodeURIComponent('{mycompleteurl}/index.jsp?mid='+mid+'&timing='+timing+'&access_token='+accessToken),'post',
function(response) {
if (!response || response.error) {
//alert(response.error.message);
}else{
alert("Action posted successfully.")
}
});
FB.api(
'/me/mpuzzleapp:solve',
'post',
{
mpuzzle: '{mycompleteurl}/index.jsp?mid='+mid+'&timing='+timing+'&access_token='+accessToken
},
function(response) {
if (!response || response.error) {
alert(response.error.message);
}else{
alert("Action posted successfully.")
}
}
);
Previously this used to work fine, Now it is just not able to catch parameter with my url. the link that was posted in my wall is this.
it is missing mid and timing parameter.