0

I recently created a wallpaper app. I want to ask, do Pixabay allow to show their photos as wallpaper in a Wallpaper Application. Isn't there any policy restrictions for wallpaper apps in Pixabay.

Website: pixabay.com

  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Aug 25 '22 at 18:59

1 Answers1

0

Yes you can. The PHP library I tested is from Zoonman PHP API Code on GitHub

Then obtain a Developer Account on Pixabay Developer API

There after install the library on your server and obtaining images URLs etc is just simple like this code asking for images on 'nature'. Change the query keyword and you will get images for that.

<?php

require_once 'vendor/autoload.php';

$pixabayClient = new \Pixabay\PixabayClient([
  'key' => 'yourPixabayKey'
]);

// test it
$results = $pixabayClient->get(['q' => 'nature'], true);
// show the results
var_dump($results);

Use data fields returned by the API to create your wallpaper App gallery.

  • I Asked about Android Application, that, isn't there any policy restriction for wallpaper app. – Rafiqullah Taibzada Aug 27 '22 at 03:31
  • Pixabay license page specifially mentioned against distribution on wallpaper platforms. "Don't redistribute or sell Pixabay content on other stock or wallpaper platforms." The license page is here if you want to read all their terms : https://pixabay.com/id/service/license/ – Rajesh Kakkad Aug 27 '22 at 17:33