Questions tagged as 'request'

0
answers

Problem with HttpWebResponse. Does not reply

I hope you guys can help me, I'm having a problem when I try via c # make a request on my server (request is slow, takes about 10 minutes to process and returned) For fast requests, everything works fine for slow requests (more than 10 minu...
asked by 10.09.2015 / 21:35
1
answer

Save AJAX REQUESTS to run later

Use jQuery and the Ajax library to make REQUESTS. There is a way to save REQUESTS, follow the example .. The user is moving and suddenly the connection goes down and the user does not notice it. And he continues doing what he did .. and su...
asked by 14.08.2015 / 14:16
0
answers

How to get a Facebook API token?

To better understand how the Facebook API works, I'd like to create a request to log in and get a token. But I only find explanations through the SDK or the API explore, located on the Facebook site itself in the development area. Could someo...
asked by 30.10.2014 / 19:52
1
answer

xmlhttp is not defined

I'm having some problems while performing an ajax request by javascript, however, it does appear that the variable xmlhttp has not been defined, even though I set it before the function and before using it. How to solve? var xmlhttp; fu...
asked by 10.01.2018 / 12:57
1
answer

How to get Gmail source code using Python3

I am accessing the Email using this code that I have found and adapted: import requests from bs4 import BeautifulSoup form_data = {'Email': '[email protected]', 'Passwd': 'senhaexemplo'} post = "https://accounts.google.com/signin/challenge/sl...
asked by 01.10.2018 / 02:54
1
answer

Read data from a url

I would like to get data from a url address Searching found this answer Implemented for my reality var http = require('http'); var options = { host: 'http://192.168.1.6', path: '/sistema.cgi...
asked by 20.08.2018 / 16:18
2
answers

Receiving POST from a Json in PHP

I'm trying to get a Json via POST and display it on the screen, Json is sent via an API that I do not have access to the script it sends, I'm trying to print everything I receive on the screen and then proceed, I know it is sent via POST and Con...
asked by 25.05.2018 / 16:46
1
answer

Problems with ajax request

Well, I'm trying to perform a simple ajax request, but the called content is not being displayed. How can I resolve? var xmlhttp; function callContent(){ var mainContent = document.querySelector(".main-content"); xmlhttp = new XMLHtt...
asked by 01.12.2017 / 14:17
1
answer

Increase object to HTTP request

I'm trying to make a request in which I send a JSON (POST) and I get another one, I'm doing the following: I mount / feed my object and call this request: string URLRequest = URL + customer_id + "/cards"; HttpWebRequest request = (HttpWebReque...
asked by 25.07.2017 / 16:38
1
answer

Android: How to make a POST request to get an image

I need to get a Bitmap from the server through a POST method with the body (JSON) and header to put in an ImageView. I tried using Volley's ImageRequest but I would need to pass the direct URL of my image, which does not happen. I have a URL...
asked by 19.04.2017 / 16:33