2

I created an Azure Web Job and published and associated with my Web App. I think created a schedule to run every hour.

When I login to the portal, I notice a new Schedule has been created. It has two automatically headers:

Where did that Basic Authorization key come from? I can't seem to find it when drilling into the Web Jobs tab under my Web App.

It's also strange the scheduler only allows for minimum of hour intervals for a "Basic" web app. But I can just create a fresh Scheduled Job using the same credentials in order to get minute level processing.

enter image description here

aherrick
  • 19,799
  • 33
  • 112
  • 188

1 Answers1

3
$authPair = "$($site.PublishingUsername):$($site.PublishingPassword)";
$pairBytes = [System.Text.Encoding]::UTF8.GetBytes($authPair);
$encodedPair = [System.Convert]::ToBase64String($pairBytes);

Reference
Create a Scheduled Azure WebJob with PowerShell

Community
  • 1
  • 1
Ryan Chu
  • 1,381
  • 13
  • 20