chuweiqiang 1 年之前
父節點
當前提交
0c2e3538ab
共有 2 個文件被更改,包括 91 次插入8 次删除
  1. 9 8
      .idea/workspace.xml
  2. 82 0
      application/api/controller/AliBabacloud.php

+ 9 - 8
.idea/workspace.xml

@@ -2,7 +2,8 @@
 <project version="4">
   <component name="ChangeListManager">
     <list default="true" id="1a36929e-c054-4875-a943-593a74e55fa4" name="Default Changelist" comment="">
-      <change beforePath="$PROJECT_DIR$/application/user/view/member/form.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/user/view/member/form.html" afterDir="false" />
+      <change afterPath="$PROJECT_DIR$/application/api/controller/AliBabacloud.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -568,7 +569,7 @@
       <workItem from="1710722050864" duration="8908000" />
       <workItem from="1710808231575" duration="7017000" />
       <workItem from="1710817453185" duration="16334000" />
-      <workItem from="1710896140284" duration="601000" />
+      <workItem from="1710896140284" duration="3291000" />
     </task>
     <servers />
   </component>
@@ -690,22 +691,22 @@
     </option>
   </component>
   <component name="WindowStateProjectService">
-    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog" timestamp="1709710389498">
+    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog" timestamp="1710898077919">
       <screen x="0" y="0" width="2194" height="1194" />
     </state>
-    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog/0.0.2194.1194@0.0.2194.1194" timestamp="1709710389498" />
+    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog/0.0.2194.1194@0.0.2194.1194" timestamp="1710898077919" />
     <state x="1215" y="438" key="FileChooserDialogImpl" timestamp="1709186289530">
       <screen x="0" y="0" width="2194" height="1194" />
     </state>
     <state x="1215" y="438" key="FileChooserDialogImpl/0.0.2194.1194@0.0.2194.1194" timestamp="1709186289530" />
-    <state x="827" y="411" key="NewPhpClassDialog" timestamp="1709708337773">
+    <state x="827" y="411" key="NewPhpClassDialog" timestamp="1710897647768">
       <screen x="0" y="0" width="2194" height="1194" />
     </state>
-    <state x="827" y="411" key="NewPhpClassDialog/0.0.2194.1194@0.0.2194.1194" timestamp="1709708337773" />
-    <state x="310" y="130" width="1206" height="901" key="find.popup" timestamp="1710818773975">
+    <state x="827" y="411" key="NewPhpClassDialog/0.0.2194.1194@0.0.2194.1194" timestamp="1710897647768" />
+    <state x="310" y="130" width="1206" height="901" key="find.popup" timestamp="1710898256843">
       <screen x="0" y="0" width="2194" height="1194" />
     </state>
-    <state x="310" y="130" width="1206" height="901" key="find.popup/0.0.2194.1194@0.0.2194.1194" timestamp="1710818773975" />
+    <state x="310" y="130" width="1206" height="901" key="find.popup/0.0.2194.1194@0.0.2194.1194" timestamp="1710898256843" />
     <state x="754" y="279" key="run.anything.popup" timestamp="1702458428181">
       <screen x="0" y="0" width="2194" height="1194" />
     </state>

+ 82 - 0
application/api/controller/AliBabacloud.php

@@ -0,0 +1,82 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Gold
+ * Date: 2024/3/20
+ * Time: 9:20
+ */
+
+namespace app\api\controller;
+
+use AlibabaCloud\SDK\Sts\V20150401\Sts;
+use \Exception;
+use AlibabaCloud\Tea\Exception\TeaError;
+use AlibabaCloud\Tea\Utils\Utils;
+
+use Darabonba\OpenApi\Models\Config;
+use AlibabaCloud\SDK\Sts\V20150401\Models\AssumeRoleRequest;
+use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
+require_once '../vendor/aliyunmail/aliyun-php-sdk-core/Config.php';   // 假定您的源码文件和aliyun-php-sdk处于同一目录
+$path = __DIR__ . \DIRECTORY_SEPARATOR . '..' . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
+if (file_exists($path)) require_once $path;
+date_default_timezone_set('PRC');
+class AliBabacloud extends Base
+{
+
+    protected $access_key = 'LTAI5tGJE1WU5ytYK2zBxnDx';// key
+    protected $access_secret = 'uNyByodVajsN1lrMSCxpbrJF46Pwx3';//secret
+
+    protected $role_arn= 'acs:ram::1122764885952286:role/ramoss';//role_arn
+    protected $role_session_name= 'RamOss';//role_session_name
+
+    /**
+     * 使用AK&SK初始化账号Client
+     * @return Sts Client
+     */
+    public static function createClient($accessKeyId, $accessKeySecret){
+        // 工程代码泄露可能会导致 AccessKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考。
+        // 建议使用更安全的 STS 方式,更多鉴权访问方式请参见:https://help.aliyun.com/document_detail/311677.html。
+        $config = new Config([
+            // 必填,请确保代码运行环境设置了环境变量 ALIBABA_CLOUD_ACCESS_KEY_ID。
+            "accessKeyId" => $accessKeyId,
+            // 必填,请确保代码运行环境设置了环境变量 ALIBABA_CLOUD_ACCESS_KEY_SECRET。
+            "accessKeySecret" => $accessKeySecret
+        ]);
+        // Endpoint 请参考 https://api.aliyun.com/product/Sts
+        $config->endpoint = "sts.cn-hangzhou.aliyuncs.com";
+        return new Sts($config);
+    }
+
+    /**
+     * @param string[] $args
+     * @return void
+     */
+    public static function main($args){
+        $client = self::createClient();
+        $assumeRoleRequest = new AssumeRoleRequest([
+            "durationSeconds" => 1,
+            "policy" => "your_value",
+            "roleArn" => "your_value",
+            "roleSessionName" => "your_value"
+        ]);
+        try {
+            // 复制代码运行请自行打印 API 的返回值
+            $res = $client->assumeRoleWithOptions($assumeRoleRequest, new RuntimeOptions([]));
+            $json_res =  json_encode($res,true);
+            $res_arr = json_decode($json_res,true);
+        }
+        catch (Exception $error) {
+            if (!($error instanceof TeaError)) {
+                $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
+            }
+            // 此处仅做打印展示,请谨慎对待异常处理,在工程项目中切勿直接忽略异常。
+            // 错误 message
+            var_dump($error->message);
+            // 诊断地址
+            var_dump($error->data["Recommend"]);
+            Utils::assertAsString($error->message);
+        }
+
+    }
+
+}