We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a731c commit 2a2da58Copy full SHA for 2a2da58
1 file changed
imagekit_test.go
@@ -109,6 +109,20 @@ func TestUrl(t *testing.T) {
109
},
110
url: "https://ik.imagekit.io/test/default-image.jpg?tr=h-300%2Cw-300&ik-t=1653775928&ik-s=55f319d3a7db76e652545599a57af3dd94e32e24",
111
112
+ {
113
+ name: "signed-url-without-ExpireSeconds",
114
+ params: ikurl.UrlParam{
115
+ Path: "default-image.jpg",
116
+ Signed: true,
117
+ Transformations: []map[string]any{
118
119
+ "height": 300,
120
+ "width": 300,
121
+ },
122
123
124
+ url: "https://ik.imagekit.io/test/tr:h-300,w-300/default-image.jpg?ik-s=355f6c8a91031847828169116fd1d1db6e2aa8c7",
125
126
{
127
name: "src-with-transformation",
128
params: ikurl.UrlParam{
0 commit comments