I've noticed some of these lines in my error log (apache2):
Invalid method in request var1=1&var2%5B%5D=5915&var3=1GET /path/name.pdf HTTP/1.1, referer: http://www.domein.tld/path/morepath
For some reason this request gets made (multiple times by different users, but the strange request is always build-up the same way).
I am requesting a simple php file that echos a single line; using AJAX, but I am getting a HTTP 501 response from my localhost server on linux.
Another sniff:16:17:25.686360 ARP, Request who-has 192.168.1.1 tell 192.168.1.105, length 28
16:17:26.689702 ARP, Request who-has 192.168.1.1 tell 192.168.1.105, length 28
16:17:27.693010 ARP, Request who-has 192.168.1.1 tell 192.168.1.105, length 28
16:17:28.713027 ARP, Request who-has 192.168.1.1 tell 192.168.1.105, length 28
16:17:29.716363 ARP, Request who-has 192.168.1.1 tell 192.168.1.105, l
I am using facebook sdk 3.0.
My app type is set to game.
I have the proper "publish_actions" permission.
My token is still valid.
I am trying to post a score to "me/scores"
using
Bundle fbParams = new Bundle();
fbParams.putString("score", "" + highScore);
Request request = new Request(session,
"me/scores",
fbParams,
HttpMethod.POST,
new Request.Callba
Although i tried multiple option i couldn't find a way to get the rigt ouput.
Say i have the following data
Code:
cat file.txt
[1] C request
[1:1]
[1:4]
[1:2]
[1:3]
[1] C response
[2:3]
[2] C request
[2:1]
[2:2]
[2] C response
The output should look like
Code:
[1] C request
[1:1]
[1:2]
[1:3]
[1:4]
[1] C response
[2] C request
[2:1]
[2:2]
[2:3]
[2] C response
I've tried
Hi all,
I have the following input - the unique row key is 1st column
Code:
cat file.txt
[4] A response
[1] C request
[1] C response
[3] D request
[2] C request
[2] C response
[5] E request
The desired output should be
Code:
[1] C request
[1] C response
[2] C request
[2] C response
Now i have implemented the below loop which does work but when the input file is bigger tha
Currently I am signing in to facebook like this. I need friendslist belonging to that loggd in user.
I want to get photo from google place but can't create right request, I list places and can take place details like: address and name successfully. I tried to use reference taken from place search response.
I have some hard time to post some data to the webserver on specified link. I have a task in what I have to post a code - 125 - with my username specified as my nickname to localhost/zad.php
I tried various things.