1

IBM Cloud Function에서 OpenWhisk를 사용하여 HTTP를 통해 (IBM Cloud) ObjectStorage에있는 바이너리 파일을 반환하고자합니다.OpenWhisk (IBM Cloud Function)에서 이진 HTTP 응답을 반환합니다.

이것이 가능합니까? 나에게 OpenWhisk는 JSON을 액션에 대한 결과로만 지원한다.

이것은 내가 사용하고 코드 (get_object_storage_file 바이너리 데이터를 반환)입니다 :

import sys 
from io import StringIO 
import requests 
import json 

def get_object_storage_file(container, filename): 
    """This functions returns a StringIO object containing 
    the file content from Bluemix Object Storage.""" 

    url1 = ''.join(['https://identity.open.softlayer.com', '/v3/auth/tokens']) 
    data = {'auth': {'identity': {'methods': ['password'], 
      'password': {'user': {'name': 'member_1feaf9dc308e9d57b5fce8a2424e51cd3f04af17','domain': {'id': '4619da2fa8524beda11c89d2d1969c5b'}, 
      'password': 'nviJ.XXXXXXX.aexT'}}}}} 
    headers1 = {'Content-Type': 'application/json'} 
    resp1 = requests.post(url=url1, data=json.dumps(data), headers=headers1) 
    resp1_body = resp1.json() 
    for e1 in resp1_body['token']['catalog']: 
     if(e1['type']=='object-store'): 
      for e2 in e1['endpoints']: 
         if(e2['interface']=='public'and e2['region']=='dallas'): 
          url2 = ''.join([e2['url'],'/', container, '/', filename]) 
    s_subject_token = resp1.headers['x-subject-token'] 
    headers2 = {'X-Auth-Token': s_subject_token, 'accept': 'application/json'} 
    resp2 = requests.get(url=url2, headers=headers2) 
    return StringIO(resp2.text) 

def main(dict): 
    get_object_storage_file('data', 'raw.bin') 
    return {'greeting':'test'} 

답변

2

웹 액션 또는 "정상적인"조치에 대해이 있습니까?

일반적으로 JSON 객체로 인코딩 된 이진 데이터의 Base64로 인코딩 된 표현을 반환 할 수 있습니다. CloudFunctions 액션 항상은 JSON 객체를 반환해야합니다.

특정 예에서

, 다음 일할 수 :

import base64 

def main(dict): 
    binary = get_object_storage_file('data', 'raw.bin') 
    return {'data':base64.base64encode(binary)} 

(안된 의사 코드)