Questions tagged [server-to-server]

Communications between a server and server.

85 questions
0
votes
0 answers

Google Server to Sever Oauth - ability to restrict domain wide delegation

I've been reviewing older posts, 2 are linked below, which were answered 2-3 years ago, and thought I would pose the question again in case there have been any changes made on the Google side. Reviewing their current documentation…
Scott Hill
  • 47
  • 7
0
votes
0 answers

GmailAPI with access to only one account (Server to server)

I want to create ticket in our system when somebody sends email to support@mydomain.com. I'm using GmailAPI to read new messages from that gmail account. Currently I'm using service account and domain wide delegation (DWD) for authentication. The…
0
votes
1 answer

How to connect Woocommerce WordPress plugin to a Spring Boot API based on Spring Security Oauth2 JWT?

I am a Spring Developer trying to figure out how to connect a WordPress WooCommerce Website to my REST Spring boot Service. I haven't worked with WordPress, so there are a lot of unknown unknowns for me there. I am in collaboration with another…
0
votes
0 answers

Server to Server API Authentication + Authorization

I'm designing a Web API that will be consumed by external web server. Only the external web server must be authorized to access the internal API. The end user will be authenticated against external web server, but the username must be forwarded to…
Liero
  • 25,216
  • 29
  • 151
  • 297
0
votes
1 answer

PHP CURL sometimes work and sometimes not

I have a weird scenario here. I have 3 servers: 1.) http://my-server1/test --> This server url will only return a json object "test" 2.) http://my-server2/get_request --> This url will send a request via PHP CURL method 3.)…
0
votes
0 answers

Cron-Job Issue with double Proccesses

We have a business, where we send API request to generate digital products. We have 2 jobs, one order based and one cron-job to process open orders. I don't know where i should search the Problem. Problem is; the Cronjob double processed now 3 times…
domof
  • 1
0
votes
1 answer

401 Error on CloudKit Server-to-Server Authentication on Node JS

I'm trying to query my public CloudKit database using server-to-server authentication. I've generated the key according to Apple's docs, but no matter what I do I get this error: 401 - Unauthorized data: { uuid: '...', serverErrorCode:…
0
votes
1 answer

Tomcat 8.5 - Is HTTP2 relevant to backend to backend communication

This isn't a duplicate of node.js with nginx, because I'm asking about Tomcat 8.5 communication java backend server to java backend server When reading about HTTP2 improvements, most relevant HTTP2 improvements are client related, specifically…
Ori Marko
  • 56,308
  • 23
  • 131
  • 233
0
votes
0 answers

Establish connection to (another) server on server startup

I currently have a requirement where I'll need my Django server to establish a connection to a 3rd party provider (via sockets) and listen for events. The 3rd party uses TCP to send/receive messages and requires me to do some socket programming to…
omgirok
  • 178
  • 2
  • 11
0
votes
1 answer

Fail to read user with 'OAuth 2.0 for Server to Server Applications' protocol using admin sdk APIs

We are trying to implement OAuth 2.0 for Server to Server Applications Final motive is to call Google API to read GSuite Users. Google documentation for OAuth 2.0 for Server to Server Applications is .. -…
0
votes
0 answers

Javascript Base64 Decoding to Invalid JSON Output

I'm using a Firebase Cloud function to receive a JSON payload in an http request from the App Store (server-to-server notifications) that contains a Base64 encoded string. I'm decoding using: const latestReceipt = request.body.latest_receipt ?…
0
votes
0 answers

Using PHP Google Photos Api with Server-To-Server communication

I want to access the google photos via a web server. I.e. My webserver should call the google api and show pictures to me. I have created a service account in google and created also a public/private key. But I am having an issue with the php photos…
KSE
  • 31
  • 1
0
votes
2 answers

Column data transfer from server to server

I need to copy data from a particular column in a table and transfer to another table however, this involves moving from one SQL Server instance to another instance. Does anyone have any tips for achieving this?
0
votes
1 answer

Server-to-Server App using Google Drive not responses to APIs calls

I'm working on a project where I have to make a server to server app with PHP. The concept is : the company uploads bills to Google drive and the users use the website to retrieve their bills. First of all I didn't use a composer to the server…
K. Efkas
  • 21
  • 5
0
votes
1 answer

Is it possible to setup a fixed scope/resource in App Registration in Azure Active Directory instead of letting the client supply this?

I am trying to setup server-to-server authentication like described here, but I can't get it to work without specifying a resource(or scope, depending on the version used of the token endpoint). The reason for not specifying the resource is because…