Sayfamda bir iframe var. Safari 3. taraf çerezlerini engellediğinden, burada 'Geliştirici Kılavuzu' altında önerilen Depolama Erişimi API'sını kullanmaya çalışıyorum: https://webkit.org/blog/10218/full-third-party-cookie-blocking-and-more / . Aşağıdaki kodu belgelerden kopyaladım :
<script type="text/javascript">
window.addEventListener('load', () => {
document.getElementById('test-button').addEventListener('click', () => {
document.hasStorageAccess().then(hasAccess => {
console.log('hasAccess: ' + hasAccess);
if (!hasAccess) {
return document.requestStorageAccess();
}
}).then(_ => {
console.log('Now we have first-party storage access!');
document.cookie = "foo=bar";
console.log(`document.cookie: ${document.cookie}`);
}).catch(_ => {
console.log('error');
});
});
});
</script>
<button id="test-button">Test</button>
Tarayıcı konsolu çıkışı:
[Log] hasAccess: true
[Log] Now we have first-party storage access!
[Log] document.cookie:
Gördüğünüz gibi, hibe başarılı görünüyor ancak yine de çerezi ayarlayamıyor. Neyin yanlış olduğu hakkında bir fikri olan var mı?
Safari Sürüm 13.0.1
EDIT: Safari 13.1 konsol çıkışı:
[Log] hasAccess: false
[Log] error
Not: Ekteki sayfa, bu sayfayı işaret eden basit bir iframe
etikettir src
.
console.log('Now we have first-party storage access!');
gelip then
arasında requestStorageAccess()
?