2016-06-09 97 views
0

我一直在試圖在我的Swift應用程序的youtube API中使用etag來查找播放列表,但我的印象是我必須將它作爲參數加入。然而,沒有參數。我還嘗試緩存etag並將其與從不同答案中收到的新版本進行比較,但無論播放列表本身是否發生更改,它總是會更改。有人可以引導我朝着正確的方向前進嗎?etag如何在Youtube API上使用 - swift

謝謝!

回答

1

要擴展Google Tag Manager的功能,您可以添加函數調用變量和函數調用標記。函數調用變量可讓您捕獲通過調用返回的值,以預先註冊的函數。函數調用標籤讓你執行預註冊功能

添加自定義代碼或自定義變量和函數調用:

要創建自定義標籤,創建一個實現TAGCustomFunction協議類:

@implementation MYCustomTag<TAGCustomFunction> 

- (NSObject*)executeWithParameters:(NSDictionary*)parameters { 
// Add custom tag implementation here. 
} 

@end 

要創建自定義變量,創建實現TAGCustomFunction協議的類:

@implementation MYCustomVariable<TAGCustomFunction> 

- (NSObject*)executeWithParameters:(NSDictionary*)parameters { 
// Return the value of the custom variable. 
return @42; 
} 

@end 

確保鏈接器在鏈接時間優化期間不會消除您的類。

在Google跟蹤代碼管理器的網絡界面中,使用類名稱來設置標記和變量。

相關問題