From what I've seen on the other posts this error is because the parameter given in the method signature didn't match the posted input name. Or that somehow the value isn't even sent.
First of all this page is a test page to log onto Facebook. it retrieves the uid and the access token for a user and then sends that to the server to be stored in session and redirected to another page. All the javascript was taken from the C# FB sdk and the server side is pretty basic.
The real issue I'm confused on is that it runs correctly if I'm logged in as my own account on FB but a test-user, not a friend a temp test-user account generated by the API, produces this error after the pop up asks for the user to give the app permissions. I looked at the form data right before it is submitted and it has hidden inputs with the corresponding names and values to my parameters on the server.
Any idea why it would not send the foo variable through the post with the test user?
EDIT: here is the javascript that works correctly for my account, fails to send uid for test user. I renamed some of the query string parameters but
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
// Do a post to the server to finish the logon
// This is a form post since we don't want to use AJAX
var form = document.createElement("form");
form.setAttribute("method", 'post');
form.setAttribute("action", 'BAR>');
var tField = document.createElement("input");
tField.setAttribute("type", "hidden");
tField.setAttribute("name", 'RAHR');
tField.setAttribute("value", accessToken);
form.appendChild(tField);
var uField = document.createElement("input");
uField.setAttribute("type", "hidden");
uField.setAttribute("name", 'foo');
uField.setAttribute("value", uid);
form.appendChild(uField);
document.body.appendChild(form);
form.submit();
//Server side
public ActionResult BAR(string RAHR, int foo)
footypeinttoint?.intdoes not allownullvalue. – Soner Gönül Jan 18 at 9:43