1,638 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
59
views
Should changing website certificate to secure mess with api calls?
So I have been using the code below to fetch a list I needed for my website from an api of mine. I recently converted the certificate of the api hosting website to secure, issue is now my api is not ...
0
votes
0
answers
39
views
How to display multiple formsets in one another?
On the Site Form is used to give data to a case but since there can be multiple on a site it is made as a formset. In addition, each case can have multiple m2m relations, which are also a formset. The ...
1
vote
1
answer
67
views
Why Is file_get_contents('php://input') Returning NULL for GET method?
I'm experiencing a weird issue with a PHP script that was working fine until my server was migrated to CloudLinux v9.5.0 with cPanel version 126.0.9.
In the example below, I'm using Postman to send ...
1
vote
2
answers
291
views
QSYS2.HTTP_GET command, can't figure out Proxy and Headers configuration
The problem
I am trying to use SQL to do a GET request on the IBMi. The URL I am trying to query is the one that is in the documentation : 'https://www.ibm.com/support/pages/sites/default/files/inline-...
0
votes
0
answers
52
views
GET request for an API regarding phone transcripts
I am trying to write a program that will fetch a transcript of phone records from a data base but my code keeps giving me a 401. I am pretty sure I have the url correct, so any help would be greatly ...
0
votes
1
answer
81
views
Get method not displaying the data on browser and postman
I was trying to create API with Java. While using the get method I'm not receiving the JSON data. It's only displaying closed braces as response.
I'm attaching the code and output below. Any ...
0
votes
0
answers
61
views
Angular SSOLogin method: TypeError 'undefined' where a stream was expected in HttpClient GET request
I’m working on an Angular authentication service that includes an SSOLogin method for single sign-on functionality. Some query parameters are checked and if there are available, SSOLogin method will ...
1
vote
1
answer
425
views
Using QSYS2.HTTP_GET in RPGLE and having Bad request (400) error from the server
I am trying to call external API using QSYS2.HTTP_GET function using SQLRPGLE, having Bad request error from the server. I have used some variables to build the URL request and option parameter. Need ...
0
votes
1
answer
45
views
How do I avoid the status error after Http Headers sent?
I have an API called using HttpGet. The API validates the call and returns a report file directly (Excel or CSV). If the validation fails, it returns a Json Result object with an error code and ...
0
votes
0
answers
105
views
Post method issue with google conversion linker from GTM
I've recently started using Google Tag Manager (GTM) on my site. In GTM, I've got the Conversion Linker activated, which, if you come to the site from a Google Ad, will add a a few parameters to the ...
0
votes
2
answers
120
views
How to run selenium browser in invisible (or minimized mode) with python on Windows PC?
Is there anyone who can help with how to run selenium browser in invisible (or minimized mode) with python on Windows PC? I need to create a program to get the name of patent from the website of EPO (...
0
votes
1
answer
52
views
How can I replicate a curl -u in a header?
With a curl command I execute:
curl -u appId:secret https://api.example.com
This works I then attempt to do it with headers like so:
{
"Content-Type": "application/json",
&...
0
votes
0
answers
135
views
Creating HTTP Request and Async logout task in AuthController to ensure user is logged out of all windows using C#, ASP.NET Core MVC
I am using C# and ASP.NET Core MVC to use an AuthController to log out of all windows that the application has open. I I then use a public async Task in NotifyClient.cs to complete the request and I ...
0
votes
0
answers
139
views
The HttpClient.GetByteArrayAsync() method gets a broken value(getting an image from the server)
I'm trying to get a QR code generated on the server and put it in an image in the application.NET MAUI.
My HTTPGET method on server ASP.NET:
[HttpGet("{sum}")]
public async Task <...
0
votes
1
answer
46
views
Choose between HttpGet and HttpPost when input is complex in .NET core
In .net core web API,
Endpoint: http://localhost:4200/api/GetUsersByName
Input: {"name":"test", "pageSize":10, "pageNo": 1}
The API searches all users which ...