Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic Authentication Support #123

Open
wants to merge 63 commits into
base: master
Choose a base branch
from

Commits on Jun 28, 2018

  1. Added working Set/Get/Get all cookie functions.

    - Works and tested with Android
    - Works and tested with iOS
    - Works and tested with macOS
    - Needs testing with UWP
    TODO - Missing function for removing/setting specific cookie on UWP
    Kasper Rynning-Tønnesen committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    95f1d18 View commit details
    Browse the repository at this point in the history
  2. Removed myself as codesigner

    Kasper Rynning-Tønnesen committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    8fa5751 View commit details
    Browse the repository at this point in the history
  3. Updated so we only fetch from our own url/domain on iOS macOS

    Kasper Rynning-Tønnesen committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    49e6e73 View commit details
    Browse the repository at this point in the history
  4. Sending cookie-object and generalized some functions

    - Sending Cookie object to cookie-setter function, to avoid having to set too much values programmatically, forced
    - Changed some functionnames to fit better with C# naming-convention
    - Changed some input/output parameter-names to give a better picture of whats being sent without spelling everything out in black and white
    Kasper Rynning-Tønnesen committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    9bdf249 View commit details
    Browse the repository at this point in the history
  5. Updated some UWP functions to fit with the other.

    - I have absolutely no idea if these work
    Kasper Rynning-Tønnesen committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    9612356 View commit details
    Browse the repository at this point in the history
  6. Reverted errors made to UWP functions that were already there

    Kasper Rynning-Tønnesen committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    106b443 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2018

  1. Updated sampleapp and fixed UWP to work with setting/getting/getting …

    …all cookies for a given site
    Kasper Rynning-Tønnesen committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    df55025 View commit details
    Browse the repository at this point in the history
  2. Changed some build options to not include me, and moved the examplebu…

    …tton for cookies to the bottom of the list
    Kasper Rynning-Tønnesen committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    4833185 View commit details
    Browse the repository at this point in the history
  3. Updated a comment

    Kasper Rynning-Tønnesen committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    ac0074f View commit details
    Browse the repository at this point in the history
  4. Removed function that was inserted by accident

    Kasper Rynning-Tønnesen committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    dab4a41 View commit details
    Browse the repository at this point in the history
  5. Removed some comments and unused code

    Kasper Rynning-Tønnesen committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    91d7f9c View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2018

  1. Fixed functionname-calls

    Kasper Rynning-Tønnesen committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    e622a2b View commit details
    Browse the repository at this point in the history
  2. Updated to fetch cookies from correct urls

    Kasper Rynning-Tønnesen committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    eb16a0f View commit details
    Browse the repository at this point in the history
  3. Adding bindable property for reading current url

    Kristoffer Berge authored and Kristoffer Berge committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    dcff804 View commit details
    Browse the repository at this point in the history
  4. Adding sample files to csproj

    Kristoffer Berge authored and Kristoffer Berge committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    ce33266 View commit details
    Browse the repository at this point in the history
  5. Using navigationdelegate to detect url change on macos

    Kristoffer Berge authored and Kristoffer Berge committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    6dc4720 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2018

  1. Trigging navigation event from urlLoading instead of resource loading

    Kristoffer Berge authored and Kristoffer Berge committed Jul 12, 2018
    Configuration menu
    Copy the full SHA
    8443e8e View commit details
    Browse the repository at this point in the history
  2. Fixed issue with threads and issues with fetching correct cookies in …

    …android
    Kasper Rynning-Tønnesen committed Jul 12, 2018
    Configuration menu
    Copy the full SHA
    e5a7cb4 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2018

  1. Merging master

    Kristoffer Berge authored and Kristoffer Berge committed Jul 13, 2018
    Configuration menu
    Copy the full SHA
    2590055 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2019

  1. Upgraded Xam.PluginwebView.Abstractions from NET Standard 1.0 to NET …

    …Standard 2.0. Upgraded packages to latest version. Migrated SampleApp from PCL to NET Standard 2.0. Migrated all projects from packages.config to PackageReference (except SampleApp.UWP and Xam.Plugin.WebView.UWP)
    Øyvind Liland committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    d5751ae View commit details
    Browse the repository at this point in the history
  2. New projectnumbers

    Øyvind Liland committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    25e6df5 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2019

  1. Configuration menu
    Copy the full SHA
    c7772aa View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2019

  1. Attempt to fix bug when adding cookies as they are not "visible" to t…

    …he WKWebView probably due to WKWebView WKNavigationDelegate DecidePolicy runs in another process that does not get access to the WKHttpCookieStore's cookies as the may be added through a different process. This is attempted to be solved by ensuring that the same instance of WKProcessPool is set on WKWebViewConfiguration.
    erlendl committed Jan 31, 2019
    Configuration menu
    Copy the full SHA
    f50bcde View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c92d118 View commit details
    Browse the repository at this point in the history
  3. Changes to diagnostics

    erlendl committed Jan 31, 2019
    Configuration menu
    Copy the full SHA
    e83a67d View commit details
    Browse the repository at this point in the history
  4. Add headers on each call

    NGumby committed Jan 31, 2019
    Configuration menu
    Copy the full SHA
    f36e6d2 View commit details
    Browse the repository at this point in the history
  5. Merge adding Get/Set cookies

    NGumby committed Jan 31, 2019
    Configuration menu
    Copy the full SHA
    8991719 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2019

  1. Changes to PrintCookiesRequest to satisfy Android API which requires …

    …a url to request the cookie for.
    erlendl committed Feb 1, 2019
    Configuration menu
    Copy the full SHA
    9fccab9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9f365b1 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2019

  1. Configuration menu
    Copy the full SHA
    e15d8b7 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2019

  1. Configuration menu
    Copy the full SHA
    65f6865 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'cookies' of https://github.com/AbarisConsulting/Xam.Plu…

    …gin.Webview into cookies
    
    * 'cookies' of https://github.com/AbarisConsulting/Xam.Plugin.Webview:
      wkWebView.ScrollView.Bounces = false; in FormsWebViewRenderer (iOS)
    erlendl committed Feb 14, 2019
    Configuration menu
    Copy the full SHA
    214163c View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2019

  1. ShouldInterceptRequest cannot be used for stopping WebView from loadi…

    …ng since it executes on a different thread and continues to load before StopLoading is able to get execution time on main thread. The same logiq is moved to ShouldOverrideUrlLoading which runs on UI thread.
    erlendl committed Feb 20, 2019
    Configuration menu
    Copy the full SHA
    9b9972f View commit details
    Browse the repository at this point in the history
  2. Minor changes...

    Øyvind Liland committed Feb 20, 2019
    Configuration menu
    Copy the full SHA
    1c4e4d5 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'cookies' of https://github.com/AbarisConsulting/Xam.Plu…

    …gin.Webview into cookies
    Øyvind Liland committed Feb 20, 2019
    Configuration menu
    Copy the full SHA
    80f2d21 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2019

  1. Version bump

    Øyvind Liland committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    9ffd56c View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2019

  1. Configuration menu
    Copy the full SHA
    30f5987 View commit details
    Browse the repository at this point in the history
  2. Package upgrade

    Øyvind Liland committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    416048d View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2019

  1. Working with response header and content type

    Øyvind Liland committed Mar 1, 2019
    Configuration menu
    Copy the full SHA
    d0af8ee View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2019

  1. Configuration menu
    Copy the full SHA
    5fb11a1 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'cookies' of https://github.com/AbarisConsulting/Xam.Plu…

    …gin.Webview into cookies
    
    * 'cookies' of https://github.com/AbarisConsulting/Xam.Plugin.Webview:
      Working with response header and content type
      Package upgrade
      Implemented FileChooser in FormsWebViewChromeClient for Android
      Version bump
      Minor changes...
    
    # Conflicts:
    #	Xam.Plugin.WebView.Abstractions/Xam.Plugin.WebView.Abstractions.csproj
    #	Xam.Plugin.WebView.Droid/FormsWebViewRenderer.cs
    #	Xam.Plugin.WebView.iOS/FormsWebViewRenderer.cs
    #	Xam.Plugin.WebView.iOS/Xam.Plugin.WebView.iOS.csproj
    erlendl committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    e8bb44d View commit details
    Browse the repository at this point in the history
  3. Added OnContentTypeLoaded for Abstractions and Android

    Øyvind Liland committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    4394f52 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'cookies' of https://github.com/AbarisConsulting/Xam.Plu…

    …gin.Webview into cookies
    Øyvind Liland committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    d5eefcd View commit details
    Browse the repository at this point in the history
  5. Fix exception on Android

    Fix cookies on ios
    NGumby committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    e1f5f45 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2019

  1. Package upgrade and version bump

    Øyvind Liland committed Mar 7, 2019
    Configuration menu
    Copy the full SHA
    4f68fe4 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2019

  1. Minor fixes

    Øyvind Liland committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    7d81c67 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2019

  1. Package upgrade + changes in FormsWebViewRenderer (iOS) for more Safa…

    …ri like behaviour in the App
    Øyvind Liland committed Mar 20, 2019
    Configuration menu
    Copy the full SHA
    a3d8a05 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2019

  1. Configuration menu
    Copy the full SHA
    7723dab View commit details
    Browse the repository at this point in the history
  2. Update documentation

    alexlobanov committed Mar 21, 2019
    Configuration menu
    Copy the full SHA
    de643b4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    30aa4e3 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2019

  1. Minor changes...

    Øyvind Liland committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    f647239 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2019

  1. Configuration menu
    Copy the full SHA
    ed9d9ae View commit details
    Browse the repository at this point in the history

Commits on May 9, 2019

  1. Merge

    NGumby committed May 9, 2019
    Configuration menu
    Copy the full SHA
    01dfa93 View commit details
    Browse the repository at this point in the history
  2. Handle navigation Cancel correctly on Android

    Handle Disposed control on Android
    Handle about:blank on ios
    NGumby committed May 9, 2019
    Configuration menu
    Copy the full SHA
    bbbeece View commit details
    Browse the repository at this point in the history

Commits on May 14, 2019

  1. Configuration menu
    Copy the full SHA
    ebe3e17 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2019

  1. Prevent exceptions

    NGumby committed Sep 3, 2019
    Configuration menu
    Copy the full SHA
    c6de070 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2019

  1. Configuration menu
    Copy the full SHA
    c334489 View commit details
    Browse the repository at this point in the history
  2. Fix merge

    Update nuget packages
    NGumby committed Nov 6, 2019
    Configuration menu
    Copy the full SHA
    aaad333 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1c11a2a View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. Add SetUserAgent

    Fixes for ios
    NGumby committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    b647256 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. Merge remote-tracking branch 'github/master'

    # Conflicts:
    #	.DS_Store
    #	SampleApp/SampleApp.Droid/SampleApp.Droid.csproj
    #	SampleApp/SampleApp/SampleApp.csproj
    #	Xam.Plugin.WebView.Abstractions/IFormsWebView.cs
    #	Xam.Plugin.WebView.Droid/FormsWebViewClient.cs
    alexlobanov committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    fd4de34 View commit details
    Browse the repository at this point in the history
  2. Update Xam.Plugin

    alexlobanov committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    0c57198 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f334fbd View commit details
    Browse the repository at this point in the history