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
the following code is not working in cloudinary nuget package version -- 1.21.0. I am using .net core
AuthToken t = new AuthToken("MyKey").Expiration(1514764800);
string url = cloudinary.Api.Url
.AuthToken(t)
.Signed(true)
.Type("authenticated")
.BuildVideoTag("dog.mp4");
the following code is not working in cloudinary nuget package version -- 1.21.0. I am using .net core
AuthToken t = new AuthToken("MyKey").Expiration(1514764800);
string url = cloudinary.Api.Url
.AuthToken(t)
.Signed(true)
.Type("authenticated")
.BuildVideoTag("dog.mp4");
Type("authenticated") is not found in above code.
I am following https://cloudinary.com/documentation/control_access_to_media#delivering_token_based_authenticated_media_assets tutorial
Please also provide any sample for token based authentiv=cation .net core
The text was updated successfully, but these errors were encountered: