Spreadsheet Integrator - Online Help
Available for:
Spreadsheet Integrator
Questions / Feedback?

ReturnURL Event

Fires when the user is redirected to the embedded web server.

Syntax

[VB.NET]
Public Event OnReturnURL As OnReturnURLHandler
[C#]
public event OnReturnURLHandler OnReturnURL;

public delegate void OnReturnURLHandler(object sender, OauthReturnURLEventArgs e);

class OauthReturnURLEventArgs : EventArgs {
  string URLPath {get;}
  string QueryString {get;}
  string ResponseHeaders {get; set;}
  string ResponseBody {get; set;}
}

Remarks

When ClientProfile is set to cfApplication and the embedded web server is used (default), this event will fire when the user is redirected from authorization server back to the local embedded web server. The event provides an opportunity to set the ResponseHeaders and ResponseBody and provide a custom response that the user will see in their browser.

URLPath and QueryString are informational parameters that show the values sent by the authorization server.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 1.0.6240.0