BF login issues

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bascoe
    Member
    • Sep 2018
    • 42

    #1

    BF login issues

    In the PHP forum a member noted issues with Login.

    Since about 5pm Australian Time I began having issues as well.

    I make my call to https://identitysso.betfair.com.au/api/

    I began getting a "; Secure" message appended to the ssoid item in the login response:

    "ssoid=ZZZZZZ? =; Domain=.betfair.com.au; Path=/; Secure"

    This resulted in the error INVALID_SESSION_INFORMATION

    Until today the "Secure" component was not there, it is simple to work around by splitting the ssoid and using the first item.

    FYI
  • Guest

    #2
    Hi Basco I noted the same error so jumped into my code to step through. I use the non-interactive login and note when the SSOID is returned there is now an extra bit of data, ie "Secure" has now been added. Here is my new string .....

    ssoid=QN------------------------------..NfoEc=; Domain=.betfair.com; Path=/;Secure

    So the fix is easy just replace this first bit of code with the second which now removes "Secure"

    sessToken = sessToken.Replace("; Domain=.betfair.com; Path=/", "") 'dump rear string

    sessToken = sessToken.Replace("; Domain=.betfair.com; Path=/; Secure", "") 'dump rear string
    Last edited by Guest; 22-08-2020, 02:38 AM.

    Comment

    Working...
    X