Questions tagged [callbackurl]

A callback URL is a URL passed to a server as part of a request. The server then uses that URL to respond asynchronously to the original caller.

63 questions
121
votes
6 answers

What is a callback URL in relation to an API?

I've been scouring the net, and can't seem to wrap my head around the idea of a callback URL. In my case I have a few callback URLs that I have to define myself. A popular one is a "default callback URL". What is this exactly? Can you give an…
ApathyBear
  • 6,991
  • 12
  • 48
  • 84
15
votes
1 answer

What is an "authorization callback url?" for imgur and what should mine be?

I'm trying to write a program to upload an image to imgur and return the url. I want to start trying to play around with the api, but to register for my client id, one of the required fields is the "Authorization callback url." The description says…
user2816570
  • 317
  • 1
  • 4
  • 13
14
votes
2 answers

Where is info.plist for React Native projects run in Expo for the purpose of callback URLs?

I am handling OAuth requests in my iOS React Native application. This application is contained and launched through Expo. I want to add in a custom callback url, so that I can return back to the application after jumping into a browser. Supposedly,…
Code Doggo
  • 1,700
  • 4
  • 25
  • 51
6
votes
1 answer

How can I return to the current hash location using Passport.js?

I'm using Passport.js to authenticate with Google via OAuth (I'm using the passport-google-oauth strategy). It works fine, but I'm currently redirecting the user to "/", and I'd like to send them to "/" plus the current hash tag. I can send the hash…
Mike Pateras
  • 14,127
  • 29
  • 93
  • 131
5
votes
1 answer

How to integrate the AWS Cognito built-in UI?

I've been experimenting with Cognito for a few days, and I am now testing the Built-in signing UIs. I have managed to get it working, I am able to see the login page and successfully login with a User I have created. For my callback URL I'm using…
Pablo Barría Urenda
  • 4,664
  • 4
  • 15
  • 27
5
votes
1 answer

Instagram API Returning Invalid Format for Callback_Url Error

I'm using the Instagram API. I'm trying a simple post for a subscription request, and I keep getting "Invalid format for 'callback_url'. URL must start with http:// or https://". It clearly starts with that. I can't find anyone online that's…
3
votes
0 answers

truecaller web api not returning auth token

I am using true caller apis to fetch user data from the true caller database. As per TrueCaller's Github documentation,I have used the below code to do the authentication curl -X POST -H "Content-Type: application/json" -H "appKey:…
Neeraj
  • 111
  • 1
  • 1
  • 9
3
votes
1 answer

Rails OmniAuth Facebook 'Redirect URL must be absolute'

I am trying to set up omniauth to allow users to sign in to my website with facebook. I get the following error when i click on the log in button after following the Github Tutorial In my devise.rb file i have: config.omniauth :facebook, "*****",…
rohaldb
  • 533
  • 5
  • 21
3
votes
0 answers

Create webhook for trello in php

I am creating webhook for trello using trello api and mattzuba sdk, webhook is created successfully by using post method but there are two issues On getting this webhook by using GET function, no results I found. On changing in model (board id ive…
3
votes
3 answers

PayPal Instant Update CallbackURL not being called in live setup

I'm working on integrating PayPal Express Checkout into an existing web application for which I've already setup Google Checkout and Amazon Payments (both SimplePay and CBA). So I'm not new to this. Everything, including the Instant Update Callback,…
Jaffer
  • 745
  • 1
  • 9
  • 20
2
votes
2 answers

How do I make an M-Pesa Callback URL using Firebase Cloud Firestore?

I'm trying to make an app that can send payments to PayBill numbers with Safaricom's "Lipa Na M-Pesa" (a Kenyan thing). The call is a POST request to URL: https://sandbox.safaricom.co.ke/mpesa/stkpush/v1/processrequest with header: { …
2
votes
0 answers

Is it possible to set the Micronaut OAuth2 callback-uri as an absolute URL?

I have a Micronaut web-app that uses OpenId / OAuth2 / JWT. In some environments, everything works really well with this set up, however, in other environments, auth fails during the step where the configured callback-uri is called. For some reason,…
brent777
  • 3,299
  • 1
  • 24
  • 33
2
votes
0 answers

How to keep login into my domain url in webview using session id and user id details

I am getting response from my server with native google+ sign-in oauth2 token , and i am setting cookie: String cookieSessionString = "JSESSIONID" + "=" + i.getStringExtra("C_session_id"); String cookieEmailString = "useremail" + "=" +…
sudhir
  • 21
  • 1
  • 3
2
votes
2 answers

How to use functions in services.php laravel config file

I needed to use a dynamic callback url for socialite so I added the url() function to my services.php file it worked fine(and its still working on my live server) But when tried to start the project locally I get the following error. When I remove…
Fenn-CS
  • 613
  • 10
  • 25
2
votes
1 answer

How to debug /set up local environment to test twilio callbackurl

I set up a test account for twilio and my method in C# is sending sms correctly. But the status in response object (SMSMessage) is queued. I understand that if I pass a call back url, then twilio will update the status when it does get updated. My…
tess
  • 21
  • 2
1
2 3 4 5