Questions tagged [outbound]

"Outbound" stands for any behavior or event related to links pointing to URLs outside the current domain.

211 questions
23
votes
4 answers

URL Rewrite keeps original host Location when reverse proxy 301 redirects

I have URL Rewrite setup on an IIS 7.5 site: http://site1.com/ This acts as a reverse proxy to the second site: http://site2.com/ Here is the flow of events: 1. Browser does a GET on http://site1.com/somepath 2. This gets passed through to site2…
Guy
  • 65,082
  • 97
  • 254
  • 325
19
votes
1 answer

Source Port vs Destination Port

I am new to TCP/IP and trying hard to learn basics. Well, I really wonder about inbound rules and outbound rules of Firewall and concept of source adress:port, destination adress:port. For example I am investigating port 80. I know that http uses…
Omer
  • 8,194
  • 13
  • 74
  • 92
18
votes
1 answer

View Event parameters from events older than 30 minutes in Google Analytics (2021)

I am trying to track links users click on my site. I am able to see the links they are clicking on by going to Engagement -> Events -> Click -> link_url(Under parameter name), however I can not find a way to view this data after 30 minutes. After 30…
shahanneda
  • 191
  • 1
  • 7
17
votes
7 answers

Track all outbound links in Google Analytics

I've been using a script to track outbound links for a couple of months now. The script WORKS, but in the report generated by Google Analytics many URLs are having a trailing ":80" (default port number) at their end. Read on for more details. It's…
Wallace Sidhrée
  • 11,221
  • 6
  • 47
  • 58
9
votes
4 answers

Java Arraylist got java.lang.IndexOutOfBoundsException?

I'm a general 3D artist, switched from my career and started to learn programming. I've got a problem with c106a handout #5. The code works, but I've still got some error log here. Exception in thread "main" java.lang.IndexOutOfBoundsException:…
Vittori
  • 111
  • 1
  • 2
  • 5
8
votes
2 answers

Difference between sip proxy and sip outbound proxy

I'm little bit confused about sip proxy and sip outbound proxy? What is the basic difference between sip proxy and sip outbound proxy? Is it mandatory to use sip outbound proxy along with sip proxy? Can anyone point me out from the below image which…
Poles
  • 3,585
  • 9
  • 43
  • 91
7
votes
2 answers

How often can MS Azure App Services Outbound IP addresses change?

I'm using Azure App Services that calls an external API that uses white-listing of IP addresses for defense-in-depth protection. I'm aware I can find my Outbound IP addresses of my App Services under the WebApp -> Settings -> Properties -> Outbound…
Peter Clarke
  • 71
  • 1
  • 4
7
votes
6 answers

target=_blank doesn't work with GA outbound link tracking

I want to track clicks on outbound links and implemented the following code: GA code var trackOutboundLink = function(url) { ga('send', 'event', 'outbound', 'click', url, {'hitCallback': function () { document.location = url; } …
6
votes
0 answers

nginx outgoing proxy configuration

im using nginx x as a reverse proxy. heres my configuration : location /google/ { rewrite ^/google/(.*) /$1 break; proxy_set_header Host $host; proxy_set_header X-Forwarded-For …
kCorp
  • 61
  • 1
  • 3
6
votes
2 answers

When tracking outbound links with Google Analytics, why delay the outbound click instead of pushing a function into the queue?

The official suggestion for tracking outbound links with (the asynchronous version of) Google Analytics is to push an tracking event into the queue, like: gaq.push(['_trackEvent', 'Outbound', 'http://foo.bar/']); setTimeout('document.location =…
lucasrizoli
  • 628
  • 6
  • 14
6
votes
2 answers

How to enable outbound connections for a Docker container?

I have an ASP.NET Core application that is hosted in the Docker cloud (cloud provider is Azure). The application uses Hangfire to run recurring jobs in the background, and one of the jobs needs to request data from an external REST API. I noticed…
Matze
  • 5,100
  • 6
  • 46
  • 69
6
votes
1 answer

Twilio how to make two outbound calls and join(conference) them using node js

I have to make two outbound calls to two random mobile numbers and join both of them in conference using node.js. Is there a way to make it possible using twilio and node.js.
user3172208
  • 91
  • 1
  • 5
6
votes
0 answers

Azure outbound traffic logs

Are there any logs on a cloud service web role with details of outbound traffic? I would like to check http requests made to a third party web service in the past. Quick summary of my situation to provide some context: I have a Reserved IP. The web…
6
votes
1 answer

Strategy to minimize Azure storage outbound data costs

I am building a web site that (among other things) allows the user to upload photos via web api. The user images will be stored in azure storage blob to be displayed in user albums, and shared with social media. The site will be hosted as an azure…
6
votes
2 answers

how to send json post in cakephp

I need to send exactly this: POST http://api.outbound.io/api/v1/identify Content-Type: application/json { "api_key": "MY_API_KEY", "user_id": "MY_UNIQUE_USER_ID", "traits" : { "email" : "dhruv@outbound.io", "name" : "Dhruv Mehta", …
Rene Polo
  • 831
  • 7
  • 18
1
2 3
14 15