Loading [MathJax]/extensions/tex2jax.js

2025-03-12

Python: xapiでステートメントを登録する(Learning Locker)

 表題の通り、LRSとしてLearning Lockerを使うことになったので、まずはPythonでのデータ(ステートメント)の登録方法など。一般的には、MoodleなどのLMSからLRSに送るので、コードでガリガリということはあまりないと思いますが・・・。

留意点としては(Learning Lockerを前提にしていますが)、

  •  エンドポイントのportは8081
  • usernameとかpasswordは、Learning Lockerにある管理画面のKey, Secretなどが該当
  • headerには"X-Experience-API-Version"が必須
というところですね。

import requests
import json
from datetime import datetime, timezone
from base64 import b64encode
# Learning Locker LRS のエンドポイント情報
LRS_ENDPOINT = "http://localhost:8081/data/xAPI/statements"
LRS_USERNAME = "xxxxxxx"
LRS_PASSWORD = "xxxxxx"
# Basic認証ヘッダーの作成
def get_auth_header():
auth_string = f"{LRS_USERNAME}:{LRS_PASSWORD}"
auth_encoded = b64encode(auth_string.encode()).decode()
return {"Authorization": f"Basic {auth_encoded}"}
# xAPI ステートメントの作成
def create_xapi_statement():
statement = {
"actor": {
"mbox": "mailto:example@example.com",
"name": "John Doe",
"objectType": "Agent"
},
"verb": {
"id": "http://adlnet.gov/expapi/verbs/completed",
"display": {"en-US": "completed"}
},
"object": {
"id": "http://example.com/activities/lesson1",
"definition": {
"name": {"en-US": "Lesson 1"},
"description": {"en-US": "The first lesson"}
},
"objectType": "Activity"
},
"timestamp": datetime.now(timezone.utc).isoformat()
}
return statement
# xAPI ステートメントの送信
def send_xapi_statement():
headers = {
"Content-Type": "application/json",
"X-Experience-API-Version": "1.0.3", #これが必要です
**get_auth_header()
}
statement = create_xapi_statement()
response = requests.post(LRS_ENDPOINT, headers=headers, json=statement)
if response.status_code == 200 or response.status_code == 204:
print("xAPI ステートメントが正常に送信されました。")
else:
print(f"エラー: {response.status_code}, {response.text}")
if __name__ == "__main__":
send_xapi_statement()


2025-03-10

AWS Lambda: [ERROR] ProfileNotFound: The config profile (xxxx) could not be found

Chaliceを使ってPythonコードをlamdaにデプロイしたら、Internal Errorのリターンがあり、表題のようなエラーがCloud Watchで確認できました。エラーの意味は、xxxxってプロファイルがないよってことなんですが。。。。

原因と解決策

原因は、ローカルで指定している Crediencialのプロファイルが、サーバー側にはないよってこと。

解決策は、デプロイするコードにはprofileを指定する記述をなくす。。ということにようです。sonnnet3.7の回答がそうだったので、実際そうすると動きました。でも何かスマートじゃないな。