2
imgurpythonを使用してアルバムを作成し、画像をアップロードしようとしています。しかし、私はアルバムに画像を添付することができません。それは私に次のエラー:(403) The album you're requesting does not belong to your account
を与えています。作成したアルバムに画像をアップロードできません:Imgur python
client = ImgurClient(client_id, client_secret)
def CreateAlbumAndUploadImages(albumName,albumDescription,images):
fields = {}
fields['title'] = albumName
fields['description'] = albumDescription
fields['privacy'] = 'public'
x = client.create_album(fields)
print(x)
y = client.album_add_images(x['id'],images) #error here
print(y)
return x
def UploadPhoto(images):
config = {
'name': 'some image name here',
'title': 'some title here',
'description': 'some description here'}
image = client.upload_from_path(image_path, config=config, anon=False)
print("Done")
print(image)
return image
def main():
#x = CreateAlbum('Album 101','Album 101 desciption')
id = []
id.append(UploadPhoto(['image1.jpg'])['id'])
id.append(UploadPhoto(['image2.jpg'])['id'])
x = CreateAlbumAndUploadImages('albumNameHere','some description here',id)
pass
if __name__ == '__main__':
main()
注:私のコードで以下の私は、ウェブ上で認可呼び出すとオプション