Hello @manjil123
Firstly, make sure that you have connected your BME280 correctly to your particle device. I used a particle photon, thus pins D0 and D1 (SDA and SCL) are the I2C pins as shown in the pinout diagram in this link:
Ensure that your BME280 is connected to the photon as shown in this link:
You will need to include the CE_BME280 library in your project first. Then use these instructions in your program to poll measurements from your BME280:
Pressure = (bme.readPressure()/100); //Pressure measurements in hPa
Temperature = bme.readTemperature();
Humidity = bme.readHumidity();
Its as simple as that. If you are still having a problem, post the program you created so that we can see what you are doing and try to help