| |
| function OneDrive-CreateLink($item_id){ |
| $uri = "https://graph.microsoft.com/v1.0/drive/items/$item_id/createLink" |
| $body = @{ |
| type = "view" |
| scope = "anonymous" |
| } | ConvertTo-Json |
| |
| $whr.Open('POST', $uri, $false) |
| $whr.SetRequestHeader('Authorization', $Script:authorization) |
| $whr.SetRequestHeader('Content-Type', 'application/json') |
| $whr.Send($body) |
| |
| |
| $responseText = $whr.ResponseText |
| Write-Host "响应内容: $responseText" |
| |
| if ($whr.StatusCode -eq 200) { |
| $response = $responseText | ConvertFrom-Json |
| if ($response.link -ne $null) { |
| return $response.link.webUrl |
| } else { |
| Write-Host "创建分享链接失败,返回没有链接信息。" |
| return "" |
| } |
| } else { |
| Write-Host "API 请求失败,状态码:$($whr.StatusCode)" |
| Write-Host "错误信息:$responseText" |
| return "" |
| } |
| } |
| |
| |
| if([System.IO.File]::Exists('refresh_token.txt')){ |
| Write-Host '使用refresh_token更新access_token' -ForegroundColor Yellow |
| $Script:token = OneDrive-RefreshToken |
| } else { |
| Write-Host '获取token' -ForegroundColor Yellow |
| $Script:token = OneDrive-GetToken |
| } |
| if($Script:token -eq $null){ |
| Write-Host 'token获取失败' -ForegroundColor Red |
| exit |
| } else { |
| Write-Host 'token获取成功' -ForegroundColor Green |
| } |
| $Script:authorization = 'bearer {0}' -f $Script:token.access_token |
| $Script:root = OneDrive-GetItemInfo -item_path '/' |
| |
| |
| function list($p){ |
| OneDrive-GetList -item_path $p | foreach { |
| $s = '{0}/{1}' -f $p.TrimEnd('/'),$_.name |
| Write-Host "正在处理文件: $s" |
| |
| |
| $fileInfo = OneDrive-GetItemInfo -item_path $s |
| $itemId = $fileInfo.id |
| |
| |
| $link = OneDrive-CreateLink -item_id $itemId |
| Write-Host "文件: $s 的分享链接是: $link" |
| |
| |
| list -p $s |
| } |
| } |
| |
| list -p '/'COPY |