Questions tagged [endpoint]

This is a general tag used for all kinds of logic that reside in some receiving or sending scenario.

This is a general tag used for all kinds of logic that reside in some receiving or sending scenario. It's not necessarily bound to code, but may also be used in abstract or descriptive type of questions.

2085 questions
0
votes
1 answer

How to detect GraphQL endpoint using Python

I am trying to detect a graphql endpoint using Python language. I am an absolute beginner , but i have tried to make a code. Can you please suggest changes and better ways to do it? CODE: import requests,urllib,urllib.request import…
0
votes
1 answer

Bind 2 different applications GET endpoints

I want a GET endpoint api/v1/getNames to also bind to another application's GET endpoint user/getData. Please note the different Restlet Context here. Is there an efficient way to implement this?
oneinaminion
  • 21
  • 1
  • 3
0
votes
1 answer

Why can't I filter on one new field in Django Rest Framework?

So I'm editing an existing codebase using Django Rest Framework, and I added a new field to a model: class MyModel(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=150, null=True) the_new_field =…
kramer65
  • 50,427
  • 120
  • 308
  • 488
0
votes
1 answer

R script / package to listen to an endpoint on webpage?

I'm using an R script to query an API, process data, and then run it on a shiny server. Basically there's a input field, and then it queries that username. However, I'd like to do this from a discord bot. So I'm wondering if there's a way to listen…
0
votes
0 answers

SPARQL endpoints and GraphDB

I am a student and I'm learning to use sparql. I would like to query an endpoint by running the sparql query from GRAPHDB. So looking online I found that the solution is to use SERVICE with the endpoint link. I have tried with the wikidata endpoint…
0
votes
1 answer

Need to find corresponding endpoints for API integration of DocuSign, ideas?

Endpoints for: - Download document based off unique ID - Create new document - Upload document - Update existing document (e-Signature) I can not find anything of use here (https://developers.docusign.com/esign-rest-api/reference) or any true…
BeeSting
  • 3
  • 2
0
votes
1 answer

What simple Scenario healthcheck message JSONdate?

I have trouble in applying Java Spring boots with some rules: - If parameters values do not match the specifics possible values you should return HTTP status code 400("Bad Request") - Responses should have Content-Type header with approriate…
0
votes
1 answer

traffic manager Azure endpoint public IP address

We have 2 IP addresses with DNS name but in different Azure subscription. Currently we want to add both Public IP address in one traffic manager endpoint. But when we start to select public IP address, it only display candidate IP address in current…
littlepark
  • 25
  • 1
  • 4
0
votes
1 answer

Injecting Endpoint parameters wso2

I am new to the WSO2 ESB. I want to create an API in which I want to add an endpoint URL following the documentation(i know that there are more easy methods but this is that I want to test to follow because the others I already test them): …
0
votes
0 answers

unable to reach AWS SSM service endpoint from an instance within a VPC

I have the following setup: A VPC in us-east-1 An Endpoint for SSM in the VPC SG group blocks all outbound and inbound except my IP and self-reference I was of the impression that you can ping/curl AWS services in a VPC with an endpoint so that…
NEO
  • 1,961
  • 8
  • 34
  • 53
0
votes
1 answer

Getting all profiles from Google Analytics API

I'm trying to get all profiles using ~all option with this endpoint https://www.googleapis.com/analytics/v3/management/accounts/~all/webproperties/~all/profiles It doesn't return all profiles due to ~all for accounts. If I include account ID…
0
votes
1 answer

Camel - trying to hit endpoint

I am new to camel. I am trying to learn by writing a simple app. I have a small project setup and i am trying to hit an endpoint i found online. The enpoint does return json. The error i am getting is: org.apache.camel.FailedToCreateRouteException:…
user7367398
0
votes
0 answers

Deploy only one endpoint of a service containing multiple endpoints

I have one springboot service which contains multiple endpoints(say 8). Now I want to reuse that service and deploy on some new environment, but I only need one endpoint of that service. Is it possible to deploy just a single endpoint ?
Akanksha
  • 181
  • 3
  • 8
0
votes
0 answers

Is this an api or a routes or an endpoint or just a get method in nodejs app?

I have studied nodejs backend development for a while and last time when my friend discussed an nodejs project with me. He referred to a piece of code listed below as api. Here is how the code looks like: app.get('/home',(res,req)=>{ …
LittleTeemo
  • 184
  • 2
  • 12
0
votes
1 answer

How can I set api endpoint url in external file in angular 2+

I have an ordinary problem, when I build my angular project in development mode and copy dist files into server folder, when changed server url I can't find endpoint url to change it and I have to rebuild my project with new endpoint url. How can I…
Mohammad
  • 921
  • 7
  • 15