You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
client.clip_upload_as_reel_with_music(
path="reel.mp4",
caption="Test caption",
audio_id="18462251209012169" # music_canonical_id of the song also used audio_cluster_id as well as audio_asset_id
)
Ran the script and received the error mentioned above.
Expected Behavior
The function should correctly upload a reel with the specified music track.
Actual Behavior
An AttributeError occurs, indicating that the function does not exist.
Possible Causes
The function may be missing or not implemented yet in the current version.
The documentation might need updating to reflect the correct method for uploading reels with music.
Environment Details
OS: (Windows 10 64 bit)
Python Version: python 3.11.8
aiograpi Version: 0.0.3
The text was updated successfully, but these errors were encountered:
Description
I attempted to use clip_upload_as_reel_with_music() in aiograpi, but I encountered the following error:
AttributeError: 'Client' object has no attribute 'clip_upload_as_reel_with_music'
Steps to Reproduce
pip install aiograpi
from aiograpi import Client
client = Client()
client.login("trade.with.sumit", "danish")
client.clip_upload_as_reel_with_music(
path="reel.mp4",
caption="Test caption",
audio_id="18462251209012169" # music_canonical_id of the song also used audio_cluster_id as well as audio_asset_id
)
Expected Behavior
The function should correctly upload a reel with the specified music track.
Actual Behavior
An AttributeError occurs, indicating that the function does not exist.
Possible Causes
The function may be missing or not implemented yet in the current version.
The documentation might need updating to reflect the correct method for uploading reels with music.
Environment Details
OS: (Windows 10 64 bit)
Python Version: python 3.11.8
aiograpi Version: 0.0.3
The text was updated successfully, but these errors were encountered: