Skip to content

Commit

Permalink
fix: manage lk cookies
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentLvr committed May 2, 2024
1 parent 90f1a5f commit 8acac67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __pipeline__.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@
" if index == 0:\n",
" naas.secret.add(x, value)\n",
" if li_at == \"NA\":\n",
" li_at = naas.secret.get(\"li_at\")\n",
" li_at = naas.secret.get(\"li_at\") or naas.secret.get(\"LINKEDIN_LI_AT\")\n",
" if JSESSIONID == \"NA\":\n",
" JSESSIONID = naas.secret.get(\"JSESSIONID\").replace('\"', '')\n",
" JSESSIONID = naas.secret.get(\"JSESSIONID\") or naas.secret.get(\"LINKEDIN_JSESSIONID\")\n",
" print(\"- LinkedIn li_at:\", li_at)\n",
" print(\"- LinkedIn JSESSIONID:\", JSESSIONID)\n",
" \n",
Expand Down

0 comments on commit 8acac67

Please sign in to comment.