Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
197 views

URL Parameter Filtering with Google Sheets Data Source Background I'm using Looker Studio with Google Sheets as a data source and want to display reports with specific filters applied directly via URL ...
User9712's user avatar
  • 133
0 votes
0 answers
17 views

We have a network diagnostic tool web page that we want to open programatically with parameters (IP...) In the page (https://app/netsearch.html), normally we have to enter just the ip address range in ...
Mdarende's user avatar
  • 801
0 votes
1 answer
128 views

I am working on some task automation from a Google Spreadsheet. I need to use Adobe Sign API to complete the process. I just started using AppScript last week, so I'm not sure if what I'm doing is ...
Katrina Trial's user avatar
-5 votes
1 answer
1k views

ChatGPT can receive a prompt like so: https://www.chatgpt.com/?q=capital%20of%20france%20 Is there a way to pass a prompt to Claude via the URL? (this would be handy for integration with other ...
stevec's user avatar
  • 55.3k
0 votes
0 answers
139 views

I was trying to create Anchor Link or Bookmark for some contents. My issue is on click bookmark href link it scroll and take me to content right but my problem is it throws Unhandled Error throws on ...
Joe's user avatar
  • 113
0 votes
1 answer
177 views

I want to create page where I can show all the category tree and on click on them show child tree of that category. I have functionality working as short code where i am using query string to pass ...
PrashantAjani's user avatar
-2 votes
1 answer
99 views

I want to remove year and month in the following link: https://ana-post.blogspot.com/2024/08/strategies-for-finding-low-competition.html I tried to put js code in the head area it works but a delaying ...
Freelancer's user avatar
1 vote
0 answers
28 views

const response = await fetch(`http://${serversIP}/upload/${encodeURIComponent(saveMediaPath)}`, { method: 'POST', body: formData, headers: { 'Content-Type': 'multipart/form-data', } }...
Γιώργος ΟΙΚ's user avatar
0 votes
0 answers
46 views

I´m trying to capture the value of id by using the URL, but always while printing the array for debugging it's null. if ($_SERVER["REQUEST_METHOD"] == "POST") { $user_id = ...
Santiago S_Elias06 Elias's user avatar
0 votes
0 answers
97 views

What configurations are required in my routes to handle the query parameter userActivity for a URL like https://somesite.com/feedpool?userActivity=false? I'm using Vite as a build tool, with the base ...
U005_Aryann Dwivedi's user avatar
0 votes
0 answers
324 views

I am trying to retrieve information using the useSearchParams function and then display that information through a message component I have created. Below you can see my code for the message component:...
NoobCoder's user avatar
  • 107
0 votes
0 answers
37 views

We're working on a wordpress website and we have a plugin named Ajax filters. When I select a filter, it's loading, and in my network tab, I can see the first query : ?filters=product_cat[2199] But a ...
sorrow's user avatar
  • 1
0 votes
0 answers
38 views

Wordpress website and it sells a service, the payment collected by 3rd party payment provider link. This payment provider has no integration to cart/woocommerce/wordpress so the traditional affiliate ...
NW.'s user avatar
  • 41
0 votes
1 answer
253 views

I am able to get the PathValue from an http.Request when I run a server, but not when I run a test. Here is my handler func mux := http.NewServeMux() mux.HandleFunc("GET /customers/{id}&...
user2453676's user avatar
2 votes
1 answer
466 views

I have a path="users/:userNickname", which works fine for anything like users/.mary users/mary.kim, but if the path is users/., it will redirect to 404 page even without sending request to ...
J Sha's user avatar
  • 37
0 votes
1 answer
69 views

I have been learning the weird set-ups of Django! Its very good for web development! I have the following view inside views.py: def callerview(request,paramm): text="this is what was sent : %s&...
ChrisK0043's user avatar
0 votes
0 answers
36 views

I am trying to use a simple html script to make it so that when you reload the page with a specified id parameter, it will load with the id parameter in the middle of the page rather than how it ...
Pete's user avatar
  • 1
0 votes
1 answer
1k views

We have a website and a marketing automation platform with a tracking domain something like: https://mywebsite.com https://go.mywebsite.com Cross domain tracking is set up in GA4. The same Google Tag ...
Anna L's user avatar
  • 49
0 votes
0 answers
607 views

My route file structure looks like this. In my loader of industries.$slug.tsx export async function loader({ params }: LoaderFunctionArgs) { console.log(JSON.stringify(params)) return {} } ...
BigChungus's user avatar
1 vote
1 answer
151 views

I'm currently trying to pass a URL parameter to a PHP page on my local server, but I'm facing an issue with the $_GET superglobal that appears to be empty despite a valid URL parameter. Here's a ...
Aqu1tain's user avatar
1 vote
1 answer
942 views

I need to update an existing REST API method that returns available subscription plan information. Slightly fictionalized, it looks like this: GET /api/available-plans/{provider-id} ...where {...
Brian Rak's user avatar
  • 5,244
0 votes
0 answers
115 views

I have custom field "Fruit" with value "Orange" and others, I want to use a short code that should display all posts on a page for "Orange" value by URL parameter. for ...
Tanveer Ul Hassan's user avatar
2 votes
1 answer
215 views

I'm using the Microsoft Power Query Tool to web scrape the Shopify app store. The URL I provide has a query parameter: (https://apps.shopify.com/search?q=scarcity), that being search?q=scarcity. When ...
DapperMoose's user avatar
1 vote
1 answer
1k views

I was able find two parameters that Edge supports for PDFs: page (on StackOverflow) & view (on GitHub). But I'm wondering whether there are any others? However, searching for them with the query ...
t3chb0t's user avatar
  • 19.3k
1 vote
0 answers
34 views

I have the following route with a parameter: RouterModule.forRoot({ path: 'record/:type', component: RecordComponent, children: [{ path: 'edit/:id', component: ...
Otto Abnormalverbraucher's user avatar
0 votes
1 answer
263 views

class PracticeLocatorRegions extends Component { public string $selectedRegion = ''; protected $queryString = ['selectedRegion' => ['except' => '']]; public function mount() { ...
Nicholas Norton's user avatar
0 votes
0 answers
68 views

I was wondering if it's possible to reference the value of an html element through a URL parameter? A use case for this would be if I want to link to something another website was linking to, like a ...
Austin Foss's user avatar
1 vote
1 answer
473 views

I'm able to get a param using the GetQueryParam function from this answer in the WebLib.WebTools unit to get parameters from the current URL. One would assume the opposite of getting a param would be ...
Shaun Roselt's user avatar
  • 4,361
1 vote
1 answer
291 views

How can I get a QueryString Parameter Variable from the URL using Delphi code? Let's assume I have a URL as follows: https://www.example.com/index.html?first_name=shaun&last_name=roselt How do I ...
Shaun Roselt's user avatar
  • 4,361
0 votes
1 answer
1k views

I have a form like so: <form method="get" hx-get="{{ request.build_absolute_uri }}" hx-target="#table-wrapper" hx-swap="outerHTML" hx-trigger="keyup ...
MartingaleCoda's user avatar
2 votes
1 answer
7k views

I am currently working with Grafana and trying to create a link that redirects to another dashboard with a specified time range, which is 5 minutes before and after a certain timestamp. I have the ...
Falke's user avatar
  • 183
2 votes
1 answer
550 views

I'm new to Go so I'm trying to build a simple CRUD API using Chi. In the GetById handler I'm using chi.URLParam() method to retrieve data from the URL, but this method is returning an empty string &...
Wyfrit's user avatar
  • 21
0 votes
2 answers
760 views

I have a legacy application written in Vaadin which needs to be ported to Angular 15, notably using the same URL structure. I'm almost done with it. The one thing missing is that I need to check if no ...
AndréB's user avatar
  • 65
0 votes
2 answers
213 views

I want to pass two placeholder values to the API, for example details on location id : 50 of the organization is 5 api.xxx.com/organization/5/location/50 Below is my code and it gives a 404. But the ...
user1610132's user avatar
0 votes
0 answers
59 views

I would like to have this url /Admin/Product?page=1&keyword=somethingToSearch But when i submit the form in the UI, the "&keyword" doesn't appear. And i dont understand why. The URL ...
hyden97's user avatar
  • 155
0 votes
1 answer
72 views

I have SPA with page.js for routing running localy on a dev server. the DB sever is runned on http://localhost:3030 port dev server: http://localhost:3000 If initiate page with params in its url for ...
Mitfreex's user avatar
1 vote
1 answer
210 views

I am creating a project with react-router-dom where I want the URL to hold an id. The id will be used to fetch information about the item with that id from a database and render it on the page. I've ...
Jia Huang's user avatar
0 votes
0 answers
12 views

I have domain parked to my main domain. I don't know why but it always adds the parameter when I do a redirection. https://lgbtmilitary.org/ redirects to https://delisoft.ca/expertise/marketing-lgbtq/?...
Pierre-Luc Lamoureux's user avatar
0 votes
1 answer
705 views

According to my knowledge, Google would only utilize gbraid or wbraid when they couldn't associate a specific user with a specific click, as with gclid. After looking through my logs, I discovered ...
Bizareste's user avatar
0 votes
1 answer
20 views

Is there a way to add a url paramter (e.g., #blog) to every single blog post ?
yuvin's user avatar
  • 1
2 votes
1 answer
3k views

I'm trying to do deeplinking in one of my Flutter projects using GoRouter. The link I'm trying to open has the following format: https://url/confirm?token=token&tokenId=tokenId The route I have ...
Cioloca Rares's user avatar
0 votes
2 answers
592 views

I want to perform a load test on Fiori Apps but I am not able to login into the Fiori Portal when passing credentials in URL. Please suggest a way. Example: abc.com/sap/bc/ui2/flp?sap-client=00&...
MUHAMMAD OMER Saleem's user avatar
2 votes
2 answers
119 views

I'm currently trying to do date range filtering from url parameters with get_queryset on a generics class based view, however I am receiving an empty array after doing date range filtering. It's a bit ...
jackied3's user avatar
0 votes
0 answers
77 views

without resource, I can use like this is work: use App/Http/Controller/Aaa/XxxController as AaaXxxController; use App/Http/Controller/Bbb/XxxController as BbbXxxController; Route::get( "/aaa"...
黃梓榆's user avatar
1 vote
0 answers
240 views

I'm running into an issue where URL query params are being removed from my production URL (but are working when I test them on localhost). I'm building a react native progressive web app and am using ...
vlntine's user avatar
  • 31
1 vote
2 answers
1k views

I'm trying to retrieve a parameter value from the URL in my Angular component using the ActivatedRoute service, but I'm getting a null value for the parameter. Here's my URL: http://localhost:4200/...
Mohamed Amr's user avatar
0 votes
1 answer
939 views

I am attempting to retrieve only blog posts (in my /content directory) that contain a certain tag in my Nuxt Content query. Due to the fact I am using a URL Query Parameter in my Nuxt Content query ...
Clarinetking's user avatar
0 votes
0 answers
59 views

I have been stuck for almost a week. Want to fetch URL parameters and send it to backend(Mongodb). Please help me. Every suggestions will be appreciated. I am able to get URL params into HTML but want ...
Sam's user avatar
  • 9
0 votes
1 answer
1k views

I'm having a problem handling requests on an ESP that acts as WebServer. Basically this code: #include <WebServer.h> //using this library ... webServer.on("/api/:userId/lights&...
Berlato Matteo's user avatar
1 vote
1 answer
2k views

Is it possible to trigger a GitHub action with just a URL and query the url parameters in the action? I know that I can send an HTTP request to the GitHub API and trigger the repository_dispatch event,...
Mqx's user avatar
  • 401

1
2 3 4 5
25