get Questions

7

Solved

I'm trying to use an Entry field to get manual input, and then work with that data. All sources I've found claim I should use the get() function, but I haven't found a simple working mini example ...
Decanal asked 23/5, 2012 at 20:12

6

I am learning about API's and http request in flutter and I am facing problem in making a get request as in any tutorial they are directly pasting string URL inside get as parameter but when I post...
Diffusion asked 26/2, 2021 at 6:20

7

I've installed Anaconda and had SSL problems when trying to do API calls via Jupyter Notebooks: import requests import certifi r = requests.get('https://github.com/') print(r) This first produc...
Actinium asked 18/10, 2018 at 9:17

12

Solved

GitLab is a free, open-source way to host private .git repositories but it does not seem to work with Go. When you create a project it generates a URL of the form: [email protected]:private-d...
Laurencelaurene asked 17/4, 2015 at 19:19

11

I've tried axios.get(url, {headers:{},data:{}}) But it doesn't work with this.
Surrebuttal asked 1/5, 2020 at 21:33

6

Solved

So my brother wanted me to write a web crawler in Python (self-taught) and I know C++, Java, and a bit of html. I'm using version 2.7 and reading the python library, but I have a few problems 1. ht...
Rhaetian asked 20/8, 2010 at 17:54

7

Solved

I'm using a std::tuple and defined a class enum to somehow "naming" each of the tuple's fields, forgetting about their actual indexes. So instead of doing this: std::tuple<A,B> tup; /* ......
Davit asked 24/5, 2012 at 17:18

4

Solved

In MVC, I know we can get parameters from a get request like this: Request: http://www.example.com/method?param1=good&param2=bad And in controller public ActionResult method(string param1,...
Pinter asked 17/2, 2014 at 15:12

7

Solved

I have a simple form which accepts a username and a password. I have to use sendRedirect() method for the page to redirect to one page if log in is valid and to another if not. I need to use sendRe...
Schlicher asked 26/12, 2012 at 10:17

8

Solved

Which characters are allowed in GET parameters without encoding or escaping them? I mean something like this: http://www.example.org/page.php?name=XYZ What can you have there instead of XYZ? I thin...
York asked 21/9, 2009 at 16:59

17

Solved

I'm using fetch API within my React app. The application was deployed on a server and was working perfectly. I tested it multiple times. But, suddenly the application stopped working and I've no cl...
Pneumococcus asked 17/3, 2018 at 23:38

4

I'm working with an odata api, and when I'm using postman to do a GET request, works perfect and I get the response as I was expecting. But when I use a fetch request from my React app, the reque...
Lobule asked 1/3, 2018 at 14:3

27

Solved

I'd like to get the full file path, from a URI. The URI isn't a Image, but it's a music file, but if i do it like the MediaStore Solution, it won't work if the app user selects eg Astro as browser,...
Hyalite asked 3/11, 2012 at 13:10

7

I am having some trouble figuring out how to access a file from Amazon S3. Lets say that the bucket that the file lives in is BUCKET_NAME, the file is FILE_NAME, etc. I have tried the following two...
Sudden asked 28/10, 2011 at 18:44

23

Just wondering if there is anything built-in to Javascript that can take a Form and return the query parameters, eg: "var1=value&var2=value2&arr[]=foo&arr[]=bar..." I've been wondering...
Dorsoventral asked 25/11, 2008 at 9:13

9

RuntimeError Traceback (most recent call last) Input In [46], in <cell line: 1>() ----> 1 train_results = trainer.train() 2 wandb.finish() File /opt/conda/lib/python3.10/site-packages/tr...
Cuculiform asked 18/3, 2023 at 15:39

3

Solved

Here's an excerpt from Live HTTP headers, I've replaced several values for anonymity. POST blah/admin.php?module_id=1&action=update&id=129&pageNum=17&&eid=362 HTTP/1.1 Host: b...
Sipper asked 4/11, 2010 at 21:50

12

Solved

Is it safe to pass raw base64 encoded strings via GET parameters?
Cloth asked 3/9, 2009 at 17:12

10

Solved

Let's assume a service offers some funcionality that I can use like this: GET /service/function?param1=value1&param2=value2 Is it right to say that I can use it with a POST query? POST /ser...
Polymerization asked 28/10, 2013 at 14:30

4

I am trying to fetch a html page which is placed in Azure blob storage using postman. The default blob storage access has been set to private, so i have to send "Shared Key", "x-ms-version" and "x-...
Endres asked 19/12, 2018 at 16:8

3

Solved

When we make a stripe checkout session we include a success url: session = await this.stripe.checkout.sessions.create({ payment_method_types: ['card'], line_items: lineItems, payment_intent_data...
Doorpost asked 16/4, 2021 at 3:46

3

Solved

I'm trying to run an Icecast stream using a simple Python script to pick a random song from the list of songs on the server. I'm looking to add a voting/request interface, and my host allows use of...
Book asked 27/8, 2010 at 8:16

7

Solved

I got this error: type 'String' is not a subtype of type 'Null' in get method flutter This is the get API function that I use: Future<Stream<ServiceTypes>> getServiceTypesa() async {...
Subsequent asked 28/1, 2020 at 18:35

5

My problem is: I need to overload standard get and set for static variables in class... but no such functionality provided in php... it was asked in 2008 and still not implemented... Same goes for ...
Cameron asked 7/12, 2011 at 9:47

6

I am attempting to use the Graph API Explorer to create an access token for my application to view my pages using 'me/accounts'. However, every time I try this, it returns me an empty data set. I h...
Conjuncture asked 26/6, 2013 at 20:5

© 2022 - 2024 — McMap. All rights reserved.